/*Banner*/

.carousel-item {
    margin-top: 96px;
    height: 800px;
    position: relative;
}

.carousel-item img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.carousel-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--colorWhite);
    /*margin-bottom: 1rem;*/
    line-height: 1.2;
}

.carousel-content p {
    font-size: 1.25rem;
    color: #dddddd;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.btn-appointment {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
    text-align: center;
    padding: 8px 32px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    /*background-color: #0a4a63;*/
    color: var(--colorWhite);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 94, 127, 0.4);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 100%;
    filter: invert(1);
}


/*Doctors*/

.doctors-carousel-container {
    position: relative;
    margin-top: 40px;
}

.doctors-carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.doctors-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 10px;
}

.doctors-section {
    /*padding: 60px 0;*/
    background-color: var(--colorWhite);
}

.section-title {
    color: #063A6D;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.department-scroll-wrapper {
    position: relative;
    margin-bottom: 50px;
}


.department-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 5px;
}


/* Hide scrollbar for cleaner look */
.department-filters::-webkit-scrollbar {
    display: none;
}
.department-filters {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
}


.scroll-arrow {
    position: absolute;
    transform: translateY(-50%);
    background-color: var(--colorWhite);
    opacity: 0.7;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}


.scroll-arrow-left {
    left: 0;
    top: 50%;
}


.scroll-arrow-right {
    right: 0;
    top: 50%;
}


.scroll-arrow:hover {
    border: 1px solid var(--colorPrimary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}


.scroll-arrow img {
    width: 16px;
    height: 16px;
}


.filter-btn {
    flex: 0 0 auto;
    padding: 8px 36px;
    border: none;
    background-color: #e9ecef;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.filter-btn:hover {
    background-color: #d6d6d6;
}


.filter-btn.active {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.doctor-card {
    flex: 0 0 calc(25% - 22.5px);
    /*height: 475px;*/
    background: var(--colorWhite);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.department-section {
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.department-title {
    color: #063A6D;
    font-size: 2.5rem;
    /*font-weight: 600;*/
    border-left: 4px solid #063A6D;
    padding-left: 10px;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
}

.doctor-info {
    padding: 8px 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 90%);
    color: var(--colorWhite);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.doctor-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--colorWhite);
}

.doctor-credentials {
    color: var(--colorWhite);
    font-size: 0.875rem;
    margin-bottom: 4px;
    opacity: 0.95;
}

.doctor-hospital {
    color: var(--colorWhite);
    font-size: 0.875rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.view-profile-btn {
    /*background-color: var(--accent-orange);*/
    text-align: end;
    color: var(--colorOrange);
    border: none;
    padding: 10px 0;
    width: 100%;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-profile-btn:hover {
    text-decoration: underline;
}

.no-doctors {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.1rem;
}

.doctors_details_container {
    border-radius: 12px;
    box-shadow: 5px 5px 20px gray;
    padding: 60px;
}

.doctors_details_container .doctors_specialities{
    font-size: 22px;
}

.doctors_details {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.biography_time_slot {
    position: relative;
    padding-bottom: 80px;
}

.time_slot table tr {
    display: flex;
    border-bottom: 1px solid #5e5b5b17;
    padding-left: 12px;
    transition: all linear .3S;
    -webkit-transition: all linear .3S;
    -moz-transition: all linear .3S;
    -ms-transition: all linear .3S;
    -o-transition: all linear .3S;
}

/*.time_slot .tabile_row {*/
/*    background: #00a6fb0f;*/
/*}*/

.tabile_row .doctors_time_slot {
    /*width: 500px;*/
    background: #00a6fb0f;
    padding: 12px;
    border-radius: 10px;
    width: 250px;
}

.table-sticky-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
    padding: 8px 32px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
}

.table-sticky-btn:hover {
    color: var(--colorWhite);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 94, 127, 0.4);
}


/*Services*/

.services-section {
    padding: 80px 0;
    background-color: #e8f0f7;
    overflow: hidden;
}

/* Custom carousel container for sliding window effect */
.services-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.services-carousel-container {
    overflow: hidden;
    position: relative;
}

.services-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.service-card {
    /*flex: 0 0 calc(25% - 15px);*/
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*height: 520px;*/
    display: flex;
    flex-direction: column;
    background: var(--colorWhite);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    /*height: 380px;*/
    object-fit: cover;
}

.service-content {
    background: linear-gradient(0deg, #022440 0%, #054f8c 100%);
    /*min-height: 140px;*/
    padding: 30px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--colorWhite);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}


/* Custom navigation buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.45);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: var(--colorWhite);
}

.carousel-nav-btn:hover::before {
    border-color: var(--colorWhite);
}

.carousel-nav-btn.prev {
    left: 10px;
}

.carousel-nav-btn.next {
    right: 10px;
}

.carousel-nav-btn.prev::before {
    content: '';
    width: 12px;
    height: 12px;
    border-left: 3px solid #003d7a;
    border-bottom: 3px solid #003d7a;
    transform: rotate(45deg);
    margin-left: 4px;
}

.carousel-nav-btn.next::before {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 3px solid #003d7a;
    border-top: 3px solid #003d7a;
    transform: rotate(45deg);
    margin-right: 4px;
}

/* Style indicators (dots) */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--colorWhite);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: none;
    padding: 0;
    margin-bottom: 20px;
    margin-right: 4px;
}

.carousel-indicators .active {
    opacity: 1;
}


/* Custom indicators */
.carousel-indicators-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #003d7a;
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: none;
    padding: 0;
}

.indicator-dot.active {
    opacity: 1;
}

@media (max-width: 992px) {
    .services-carousel-wrapper {
        padding: 0 60px;
    }

    .login-container {
        flex-direction: column;
    }

    .form-section,
    .promo-section {
        flex: 1;
        min-height: 50vh;
    }

    .promo-section {
        padding: 40px 20px;
    }

    .promo-title {
        font-size: 28px;
    }

    .promo-description {
        font-size: 14px;
    }

    .promo-image {
        max-width: 100%;
        height: 250px;
    }

    .btn-appointment {
        padding: 8px 10px;
    }
}


/*Testimonials*/

.testimonials-section {
    /*background-color: #f8f9fa;*/
    padding: 60px 0;
}

/* <CHANGE> Added fade transition effect */
.testimonial-fade {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* <CHANGE> Added slide transition effect (alternative to fade) */
.testimonial-slide {
    animation: slideIn 0.6s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.active-testimonial-card {
    background: var(--colorWhite);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.active-testimonial-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.testimonial-image-wrapper {
    height: 240px;
    width: 240px;
    display: block;
    margin: auto;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid lightgray;
}

.testimonial-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.testimonial-image-wrapper > img[src*="testimonial_avatar.jpg"], .preview-testimonial-card > img[src*="testimonial_avatar.jpg"]  {
    padding: 36px;
}

.testimonial-content {
    padding-left: 20px;
}

.testimonial-quote {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonial-author {
    border-top: 2px solid #e0e0e0;
    padding-top: 15px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #003366;
    margin: 0;
    text-transform: uppercase;
}

.author-title {
    font-size: 0.9rem;
    color: #888;
    margin: 5px 0 0 0;
}

.preview-testimonial-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 1px 1px 10px #b5b5b5;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.preview-testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cursor-pointer {
    cursor: pointer;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #003366;
    width: 30px;
    border-radius: 6px;
}


/* About Page */

.management-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    background: var(--colorWhite);
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.management-image {
    width: 100%;
    object-fit: cover;
}

.management-content {
    background: linear-gradient(0deg, #022440 0%, #054f8c 100%);
    padding: 15px;
}

.management-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--colorWhite);
    margin-bottom: 12px;
}

.management-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/*Contact Page*/

/*.contact_box {*/
/*    width: 20%;*/
/*}*/

.helpline_contact li:hover i {
    color: var(--colorOrange);
    /*transition: color 0.3s ease;*/
}

/* Auth Pages */

.login-container {
    display: flex;
    /*min-height: 100vh;*/
}

/* Left Side - Form Section */
.form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*padding: 40px 20px;*/
    /*background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 240, 240, 0.95) 100%),*/
    /*url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23f0f0f0" width="100" height="100"/><path d="M0 0h100v100H0z" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></svg>');*/
    background-size: cover;
    background-position: center;
}

.form-wrapper {
    width: 100%;
    max-width: 540px;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    height: 50px;
    width: auto;
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--colorPrimary);
    margin-bottom: 8px;
}

/* Tab Buttons */
.tab-container {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
    /*justify-content: center;*/
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    color: var(--colorOrange);
}

.tab-button.active {
    color: var(--colorOrange);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--colorOrange);
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group label .required {
    color: #ff6b6b;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-group input:focus {
    outline: none;
    border-color: var(--colorOrange);
    box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
    background-color: #fff;
}

.form-group input::placeholder {
    color: #bbb;
}

/* Submit Button */
.btn-signin {
    width: 100%;
    padding: 12px;
    background-color: #003d82;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-signin:hover {
    background-color: #002a5c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.2);
}

.btn-signin:active {
    transform: translateY(0);
}

.signup-link {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.signup-link a {
    color: var(--colorOrange);
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Right Side - Promotional Section */
.promo-section {
    flex: 1;
    background: url('../images/sign_in_bg.png') no-repeat center center;
    background-size: cover; /* Makes image cover full area */
    height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 120px 0;
    padding: 60px 40px;
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.promo-content {
    max-width: 500px;
    z-index: 2;
    text-align: center;
}

.promo-title {
    color: var(--colorWhite);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.promo-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ededed;
}

.promo-image {
    width: 100%;
    /*max-width: 450px;*/
    height: 300px !important;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Export Buttons*/

.btn-export button {
    border-radius: 24px;
}

.btn-export .export-icon {
    max-width: 24px;
}


.hidden {
    display: none !important;
}

@media (max-width: 768px) {

    /*Banner*/
    .carousel-item {
        height: 460px;
        margin-top: 80px;
    }

    .carousel-content h1 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }


    /*Doctors*/
    .filter-btn {
        padding: 8px 12px;
        font-size: 14px;
    }


    .scroll-arrow {
        display: none;
    }


    /*.doctors-grid {*/
    /*    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
    /*    gap: 20px;*/
    /*}*/
    .doctors_details {
        display: grid;
        grid-template-columns: 1fr;
    }

    .doctors_details_container {
        border-radius: 12px;
        box-shadow: 1px 1px 10px gray;
        padding: 20px;
    }

    .doctor-card {
        flex: 0 0 calc(100%);
    }

    .carousel-nav-btn {
        display: none;
    }

    .carousel-nav-btn.prev {
        left: 0;
    }

    .carousel-nav-btn.next {
        right: 0;
    }


    /*Services*/
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .services-carousel-wrapper {
        padding: 0;
    }


    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.9rem;
    }


    /*Testimonial*/
    .testimonials-title {
        font-size: 1.8rem;
    }

    .active-testimonial-card {
        padding: 25px;
        height: auto;
    }

    .testimonial-image-wrapper {
        width: 100%;
        height: 420px;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }

    /*.row {*/
    /*    flex-direction: column;*/
    /*}*/

    .next-testimonial-preview {
        display: none;
    }


    /* Contact Page*/

    /*.contact_box {*/
    /*    width: 100%;*/
    /*}*/


    /* Auth Pageg*/

    .form-section {
        padding: 30px 15px;
        width: 550px;
        margin: 0 auto;
    }

    .form-wrapper {
        max-width: 100%;
    }

    .form-title {
        font-size: 24px;
    }

    .tab-container {
        justify-content: center;
    }

    .logo-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .promo-section {
        display: none;
    }

    .promo-title {
        font-size: 24px;
    }

    .promo-description {
        font-size: 13px;
    }

    .promo-image {
        height: 200px;
    }

    .export-text {
        display: none;
    }

    .btn-export button {
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }

    .btn-export .export-icon {
        max-width: 18px !important;
    }

    /* <CHANGE> Responsive adjustments for mobile - preview cards hidden via d-none d-lg-block in HTML */
}


.testimonial-card {
    background: var(--colorWhite);
    border-radius: 20px;
    padding: 32px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Quote icon styling */
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 80px;
    font-weight: bold;
    color: var(--colorOrange);
    line-height: 1;
    font-family: Georgia, serif;
}

.quote {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    margin-left: 20px;
}

.quote .mention {
    color: #3b82f6;
    text-decoration: none;
}

.author-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    color: #6b7280;
    font-size: 14px;
}

.testimonial-icon {
    width: 48px;
    height: 48px;
    padding: 2px;
    border: 2px solid var(--colorOrange);
    border-radius: 50%;
    margin-right: 16px;
}

.testimonial-icon img {
    fill: currentColor;
}


.dropdown2 {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    width: 36px;
    border: 1px solid #ceced5;
    border-radius: 10px;
}

.dropdown-button:hover {
    background-color: var(--colorOrange);
}

.menu {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    min-width: 120px;
    z-index: 1000;
    right: 0;
}

.menu-item {
    padding: 8px 12px;
    cursor: pointer;
}

.menu-item:hover {
    background: #f1f1f1;
}

.btn-edit-appointment {
    background: transparent;
    border: 1px solid #ceced5;
    border-radius: 50px;
    padding: 5px 12px;
    cursor: pointer;
    color: black !important;
    width: 100%;
}

.btn-edit-appointment:hover {
    background: var(--colorOrange);
    color: var(--colorWhite) !important;
}

.appointment_history table tr .edit .btn-processing:disabled {
    background: #eeeeee;
    border-radius: 10%;
    padding: 5px 12px;
    color: black;
}


.menu-item a,
.menu-item button,
.menu-item form {
    display: block; /* Make it block-level */
    width: 100%; /* Take full width */
    height: 100%; /* Take full height */
    padding: 10px; /* Add spacing */
    text-align: left; /* Align text */
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-item {
    padding: 0; /* remove default padding */
}

.social-icons {
    display: flex;
}

.social-icons > a {
    width: 36px;
    height: 36px;
    margin-right: 20px;
}

