.js-portal-booking {
    margin: 1rem auto 0;
    max-width: 50rem;
    font-family: Arial, sans-serif !important;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.js-portal-booking p {
    margin: 0;
    font-size: 16px;
}

.js-portal-booking h3 {
    margin: 0;
}

.js-portal-booking .text-shadow {
    text-shadow: 1px 1px 4px #333;
}

.js-portal-booking button,
.js-portal-booking .btn_file_template {
    background-color: #23689b;
    color: white;
    border: none;
    outline: none;
    border-radius: 4px;
    padding: 0.5rem 0.8rem;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.1s ease-in-out;
    border: 1px solid white;
}

.js-portal-booking button:hover,
.js-portal-booking .btn_file_template:hover {
    background-color: white !important;
    color: #23689b;
    border: 1px solid #23689b;
}

.js-portal-booking .selection-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0 !important;
}

.js-portal-booking .selection-buttons button {
    flex: 1;
}

.js-portal-booking .section {
    display: none;
}

.js-portal-booking label {
    display: block;
    font-weight: 600;
    margin: 0;
}

.js-portal-booking .required::after {
    content: " *";
    color: red;
}

.js-portal-booking input[type="text"],
.js-portal-booking input[type="number"],
.js-portal-booking input[type="email"],
.js-portal-booking select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0.5rem 0 !important;
}

.js-portal-booking .course-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0.5rem 0 !important;
}

.js-portal-booking .course-buttons button {
    flex-basis: 48%;
}

.js-portal-booking .course-buttons button:last-child {
    flex-basis: 100%;
}

.js-portal-booking .btn_upload_file {
    background-color: #23689b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 0.5rem 0.8rem;
    transition: background-color 0.3s;
}

.js-portal-booking .btn_upload_file:hover {
    background-color: #0056b3;
}

.js-portal-booking .student-info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.js-portal-booking .student-detail {
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0px 0px 8px #ccc;
}

.js-portal-booking .course-list {
    display: none;
}

.js-portal-booking .other-input {
    display: none;
}

.js-portal-booking .bootstrap-select {
    width: 100% !important;
}

.js-portal-booking .dropdown-item {
    text-wrap: wrap !important;
}

.js-portal-booking .hidden {
    display: none !important;
}

.js-portal-booking ._wrap_bagde {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.25rem;
}

.js-portal-booking ._wrap_bagde ._bagde {
    background-color: #e1e4e9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: white;
    display: flex;
    width: 100%;
    position: relative;
    flex-direction: column;
    gap: 0.5rem;
}

.js-portal-booking ._wrap_bagde ._bagde p {
    margin-right: 10px;
    color: #0056b3;
}

.js-portal-booking ._wrap_bagde ._bagde ._delete_course {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #0056b3;
}

._bagde_start_date {
    color: black;
    display: flex;
    align-items: center;
    gap: 1rem;
}

._bagde_start_date_select {
    display: flex;
    align-items: center;
    gap: 1rem;
}

._bagde_start_date_select select {
    border-radius: 5px;
}

.js-portal-booking ._terms_conditions {
    border: 1px solid #e5e5e5;
    height: 200px;
    overflow: auto;
    padding: 10px;
    font-size: 14px !important;
    font-family: Arial, sans-serif !important;
    color: black !important;
}

.js-portal-booking ._terms_conditions * {
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: 1.2rem !important;
}

.js-portal-booking ._handle_file_student {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 1.5rem;
}

.js-portal-booking .file-icon {
    margin-bottom: 2px;
}

.js-portal-booking #agreementIndividual,
.js-portal-booking #agreementCompany {
    width: 50%;
    margin: 0 auto;
    display: block;
}

.js-portal-booking .filter-option-inner-inner {
    color: white;
}

.js-portal-booking .transport-address {
    display: none;
}

.js-portal-booking .transport-address.show {
    display: block;
}

.js-portal-booking .popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.js-portal-booking .popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1001;
}

.js-portal-booking .terms-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.js-portal-booking .button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.js-portal-booking .button-group button {
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
}

.js-portal-booking .accept-btn {
    background-color: #4CAF50;
    color: white;
    transition: all 0.1s ease-in-out;
    border: 1px solid #4CAF50 !important;
}

.js-portal-booking .decline-btn {
    background-color: #f44336;
    color: white;
    transition: all 0.1s ease-in-out;
    border: 1px solid #f44336 !important;
}

.js-portal-booking .accept-btn:hover {
    background-color: white;
    color: #4CAF50;
}

.js-portal-booking .decline-btn:hover {
    background-color: white;
    color: #f44336;
}

.js-portal-booking #agreeTermsIndividual,
.js-portal-booking #agreeTermsCompany {
    width: 1.2rem;
    height: 1.2rem;
}

.js-portal-booking ._logo_pvd {
    display: none;
}

.js-portal-booking .w-12 {
    width: 12rem;
}

@media (max-width: 767px) {
    .js-portal-booking .selection-buttons {
        flex-direction: column;
    }

    .js-portal-booking .selection-buttons button {
        margin-bottom: 10px;
        width: 100%;
    }

    .js-portal-booking .course-buttons button {
        flex-basis: 100%;
    }

    .js-portal-booking #agreementIndividual,
    .js-portal-booking #agreementCompany {
        width: 100%;
    }

    ._bagde_start_date {
        flex-direction: column;
        align-items: start;
    }
}