body {
    background-color: #000;
    color: #b6c6d2;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

#playlistForm {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background-color: transparent;
    border: none;
    border-radius: 0;
}
h2{
    color: #128dd3;
    text-align: center;
    font-size: 1.7rem;
    margin-top: 30pt;
    margin-bottom: 20pt;
}

label {
    display: block;
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #b6c6d2;

}

input {
    width: 100%;
    height: 30pt;
    padding: 8px;
    box-sizing: border-box;
    background-color: #24282a;
    border-color: #24282a;
    border-radius: 5px;
    border-style: solid;
    border-width: 0.3px;
    color: #FFFFFF;

}

small {
    display: block;
    color: #b6c6d2;
    font-size: 0.875rem;
}

span.error {
    color: #AF0201;
    display: block;
    margin: 2px 0px;
    background-color: transparent;
}
span#deviceSerialNumberError {
    font-size: 12px;
    margin: 2px 0px;
}

button {
    background-color: #128dd3;
    color: #0a1c34;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 10px;
    border: 1px solid #128dd3;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
}

button:hover {
    background-color: #fff;
    border: 1px solid #128dd3;
    color: #0a1c34;
}

img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.checkbox-container {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}

.checkbox-container input {
    width: 10pt;
    height:  10pt !important;
    margin-bottom: 5px;
    transform: scale(1.2);

}
.checkbox-container input[type="checkbox"] {
    background-color: transparent !important;
    border: 1px solid #b6c6d2 !important;
    border-radius: 3px !important;
    color:  #b6c6d2 !important;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color:  #b6c6d2;
    border: 1px solid transparent;
}

.checkbox-container input[type="checkbox"]:checked::before {
    content: '\2713';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 16px; /* Adjust the size as needed */
    color: #b6c6d2;
}

.checkbox-labels {
    display: flex;
    align-items: center;
}

.checkbox-labels label {
    margin-left: 5px; /* Adjust the margin as needed */
}

.small-text {
    margin-left: 5px; /* Adjust the margin as needed */
}


#message {
    margin-top: 10px;
    padding: 10px;
    display: none;
}

.success {
    background-color: #99cc00 !important; 
    color: #fff !important; 
}

.error {
    color: #ff0000; 
}

/* Style for radio buttons and labels */
.radio-container #playlistFormatLabel {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #b6c6d2;
}

.radio-container .radio-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-container .radio-options label input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #b6c6d2;
    margin-right: 5px;
    cursor: pointer;
    outline: none;
}

.radio-container .radio-options label input[type="radio"]:checked {
    background-color: #b6c6d2;
}

.radio-container .radio-options label span {
    color: #b6c6d2;
    font-size: 0.9rem; /* Smaller font size */
    font-weight: lighter; /* Lighter font weight */
}

