
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0;
}

.cb_configuration {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.span-header {
    display: block;
    width: 100%;
    background-color: gray;
    color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

#saveSettingsWrapBtn{
    display: flex;
    margin-top: 10px;
    justify-content: center;
}

.cb_selects {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.cb_selects select {
    width: calc(50% - 10px);
    margin-right: 10px;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

.cb_options-container {
    display: flex;
    flex-wrap: wrap;
    max-height: 151px; /* Set the maximum height */
    overflow: auto; /* Make the container scrollable */
}

.cb_option {
    width: calc(33.33% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    margin: 10px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.cb_option:hover {
    background-color: #f0f0f0;
}

.sound-icon {
    /*position: absolute;
    top: 10px;
    right: 80px;*/
    font-size: 16px;
    color: #007bff;
    cursor: pointer;
}

.cb_container {
    max-width: 441px;
    margin: 0 auto;
    padding: 20px;
}

.cb_heading {
    font-size: 24px;
    margin-bottom: 20px;
}

.cb_content-box {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.cb_label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.cb_input-field {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.paragraph {
    font-size: 16px;
    line-height: 1.5;
}

.cb_login-form {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

