
#um_field_16488_student1_classArray,
#um_field_16488_student1_teacher,
#um_field_16488_student2_classArray,
#um_field_16488_student2_teacher,
#um_field_16488_student3_classArray,
#um_field_16488_student3_teacher,
#um_field_16488_customer_id {
    display: none !important;
}
h2:first-of-type {
    margin-top: 32px;
}

/* TIME BUTTONS */

.timeDisplayer .nicdark_btn {
    
}

.timeDisplayer .nicdark_btn img {
    border: 6px solid #E6C15D;
    margin: 0 50px 0 30px !important;
}


/* UM FIELD LABELS */

.um-field-label label {
    font-size: 18px;
    color: inherit;
    font-family: Raleway;
} 


/* ADD SIBLING BUTTONS */

.add-student-btn {
    display: flex;
    width: 100%;
    color:white;
    font-size:16px;
    background-color: #cde8b5;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.add-student-btn:hover {
    border-color: #659d33;
    background: #b0dd8b;
}

#um_field_16488_um_block_16488_36 {
    display:flex;
}

/* REMOVE SIBLING BUTTONS */

.remove-student-btn {
    display: flex;
    width: inherit;
    float:right;
    color:white;
    font-size:16px;
    background-color: #fecbcb;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.remove-student-btn:hover {
    border-color: #f80300;
    background: #F2A9A7;
}

/*.um-field-half:has(.remove-student-btn),*/
/*.um-field-half:has(.add-student-btn) {*/
    /*width: stretch;*/
/*}*/

/* SIBLING CARD ANIMATIONS*/

/* Base transition */
.student-block {
    overflow: hidden;
    transition: 
        max-height 0.4s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

/* Hidden state */
.student-hidden {
    max-height: 0 !important;
    opacity: 0;
    transform: translateY(-10px);
}

/* Visible state */
.student-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shift animation (when content moves up) */
.student-shift {
    animation: studentShift 0.35s ease;
}

@keyframes studentShift {
    0% {
        transform: translateY(20px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Disabled button look */
.add-disabled {
    background-color: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

/* RADIO BUTTONS */

.um-field-type_radio .um-field-radio {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fafafa;
    width: stretch;
}

div.uimob500 .um-field-half {  
    width: inherit;
}

/* hide UM radio icon */
.um-field-type_radio .um-field-radio-state {
    display: none;
}

/* hover */
.um-field-type_radio .um-field-radio:hover {
    border-color: #999;
    background: #f5f5f5;
}

/* selected state (modern browsers) */
.um-field-type_radio .um-field-radio:has(input:checked) {
    background: #caf0fe;
    border-color: #caf0fe;
    color: #fff;
}

/* text color when selected */


.um-field-checkbox-option, .um-field-radio-option {  margin: 0px 0px 0px 0px;  line-height: 24px;  display: block;  color: rgb(136, 136, 136) !important;  } 

.um-field-type_radio .um-field-radio:has(input:checked) * {
    color: #fff;
}