.imember-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.imember-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.imember-modal-content h5 {
    text-align: left;
    margin-bottom: 20px;
}

.imember-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
}

.imember-webinar-form {
    text-align: left;
}

.jadwal-pilihan {
    margin-bottom: 15px;
}
/* Checkbox custom */
.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 4px;
}

/* Hover effect */
.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

/* Checked */
.custom-checkbox input:checked ~ .checkmark {
    background-color: #0073aa; /* warna centang */
}

/* Create the checkmark/indicator (tick) */
.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Tick/centang */
.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Placeholder dan pilihan */
.select2-container .select2-selection__rendered {
    text-align: left !important;
}

/* Dropdown list item */
.select2-container .select2-results__option {
    text-align: left !important;
}


