/********** Template CSS **********/
:root {
    --primary: #00B074;
    --secondary: #2B9BFF;
    --light: #EFFDF5;
    --dark: #2B3940;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {

    .navbar-dark .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* Christmas logo accent */
.xmas-logo-addon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0fbf68 0%, #0b8f4e 50%, #0fbf68 100%);
    color: #fff;
    font-size: 18px;
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 0 14px rgba(15, 191, 104, 0.35);
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px) {
    .xmas-logo-addon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-left: 6px;
    }
}

.xmas-logo-addon i {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* Shimmer sweep */
.xmas-logo-addon::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -120%;
    width: 80%;
    height: 120%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 70%);
    transform: skewX(-20deg);
    animation: xmasShine 3.5s linear infinite;
}

/* Snowfall over the tree icon */
.xmas-logo-addon::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(3.4px 3.4px at 20% 0%, rgba(255, 255, 255, 0.98), transparent 60%),
        radial-gradient(3.8px 3.8px at 60% 10%, rgba(255, 255, 255, 0.95), transparent 55%),
        radial-gradient(3px 3px at 80% 5%, rgba(255, 255, 255, 0.92), transparent 60%),
        radial-gradient(2.6px 2.6px at 40% 0%, rgba(255, 255, 255, 0.9), transparent 60%),
        radial-gradient(3px 3px at 10% 15%, rgba(255, 255, 255, 0.92), transparent 60%),
        radial-gradient(2.2px 2.2px at 50% 8%, rgba(255, 255, 255, 0.9), transparent 55%);
    background-size: 42px 52px, 52px 62px, 62px 72px, 72px 82px, 82px 92px, 92px 102px;
    background-repeat: repeat;
    animation:
        xmasSnow 4.5s linear infinite,
        xmasSnowDrift 4s ease-in-out infinite alternate;
    mix-blend-mode: screen;
    opacity: 1;
}

@keyframes xmasSnow {
    0%   { background-position: 0 0, 0 -10px, 0 -20px, 0 -30px, 0 -40px, 0 -50px; }
    100% { background-position: 0 90px, 0 100px, 0 110px, 0 120px, 0 130px, 0 140px; }
}

@keyframes xmasSnowDrift {
    0% { transform: translateX(-1.5px); }
    100% { transform: translateX(1.5px); }
}

@keyframes xmasShine {
    0% { left: -120%; }
    60% { left: 140%; }
    100% { left: 140%; }
}

/* Ensure nav content sits above the garland */
.xmas-nav .navbar-brand,
.xmas-nav .navbar-nav,
.xmas-nav .navbar-toggler,
.xmas-nav .d-flex {
    position: relative;
    z-index: 2;
}

/* ========================================================================== */
/* SA styled confirm modal (global)                                           */
/* ========================================================================== */
.sa-confirm-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 176, 116, 0.18);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 0.15s ease;
}

.sa-confirm-modal {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    width: min(420px, 90vw);
    padding: 20px 22px;
    border: 1px solid #e2e8f0;
    animation: saConfirmPop 0.18s ease;
}

.sa-confirm-modal h4 {
    margin: 0 0 8px 0;
    font-weight: 700;
    color: #0f9b4c;
    font-size: 18px;
}

.sa-confirm-modal p {
    margin: 0 0 16px 0;
    color: #334155;
    line-height: 1.5;
    font-size: 14px;
}

.sa-confirm-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.sa-confirm-actions .sa-confirm-cancel,
.sa-confirm-actions .sa-confirm-accept {
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.sa-confirm-actions .sa-confirm-cancel {
    background: #e2e8f0;
    color: #334155;
}

.sa-confirm-actions .sa-confirm-cancel:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.sa-confirm-actions .sa-confirm-accept {
    background: linear-gradient(135deg, #00b074 0%, #0f9b4c 100%);
    color: #fff;
}

.sa-confirm-actions .sa-confirm-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 176, 116, 0.32);
}

@keyframes saConfirmPop {
    0% { transform: scale(0.96); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


/*** Header ***/
.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid var(--primary);
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: var(--primary);
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header-events {
    background: linear-gradient(rgba(43, 57, 64, .5), rgba(43, 57, 64, .5)), url(../img/events-cover.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

/* Dentists breadcrumb styling */
#dentists-city-breadcrumb {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 16px;
    border-radius: 6px;
    display: inline-flex;
    flex-wrap: nowrap;
    backdrop-filter: blur(5px);
}

#dentists-city-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

#dentists-city-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

#dentists-city-breadcrumb .breadcrumb-item.text-white {
    white-space: nowrap;
}


/*** About ***/
.about-bg {
    background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 1px, transparent 1px, transparent 100%);
    background-size: 5px 5px;
}


/*** Category ***/
.cat-item {
    display: block;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    border: 1px solid transparent;
    transition: .5s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cat-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/*** Job Listing ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

.job-item {
    border: 1px solid transparent;
    border-radius: 2px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.job-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.item-description>table,
th,
td {
    border: 1px solid black;
    padding: 10px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.item-descripton>table {
    max-width: 100%;
    width: auto;
    table-layout: auto;
}

.item-description>table td,
table th {
    word-wrap: break-word;
    white-space: normal;
}

.city-name {
    font-weight: bold;
    margin-bottom: 5px;
}

.category {
    margin-left: 15px;
    /* Ez húzza beljebb a kategóriákat */
}

.btn-link {
    padding: 0;
    /* Eltünteti a gomb stílusát */
    text-decoration: none;
    /* Alapértelmezett aláhúzás eltávolítása */
}

.btn-link:hover {
    text-decoration: underline;
    /* Hover hatás */
}

.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select-input {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-sizing: border-box;
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.custom-select-option {
    padding: 0.375rem 0.75rem;
    cursor: pointer;
}

.custom-select-option:hover {
    background-color: #f8f9fa;
}

.custom-select-option.active {
    background-color: #007bff;
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 5px;
}

.page-item {
    list-style: none;
}

.page-link {
    display: inline-block;
    padding: 8px 12px;
    text-decoration: none;
    color: #2f4f2f;
    background-color: #ffffff;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.page-link:hover {
    background-color: #28a745;
    color: #fff;
}

.page-item.active .page-link {
    background-color: #28a745;
    color: #fff;
    border-color: #28a745;
}

.page-link:disabled {
    color: #6c757d;
    background-color: #e9ecef;
    cursor: not-allowed;
}

#loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-content {
    text-align: center;
    color: #fff;
    font-size: 1.2em;
}

.spinner.double-ring {
    display: inline-block;
    width: 64px;
    height: 64px;
}

.spinner.double-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: double-ring-spin 1.2s linear infinite;
}

@keyframes double-ring-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hover-zoom:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.object-fit-cover {
    object-fit: cover;
}

.rating-cta {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
}

.rating-cta .icon {
    font-size: 2.5rem;
    color: #ffc107;
    /* arany sárga */
    flex-shrink: 0;
}

.rating-cta .text-group {
    flex-grow: 1;
    min-width: 180px;
}

.rating-cta .text-group h4 {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.rating-cta .text-group p {
    margin-bottom: 0;
    color: #6c757d;
}

.rating-cta .btn-cta {
    white-space: nowrap;
    min-width: 140px;
}

.service-name-td {
    max-width: 300px;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .service-table thead {
        display: none;
        /* Fejléc eltüntetése mobilon */
    }

    .service-table,
    .service-table tbody,
    .service-table tr,
    .service-table td {
        display: block;
        width: 100%;
    }

    .service-table tr {
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 6px;
        background: #fff;
    }

    .service-table td {
        padding: 5px 0;
        border: none !important;
    }

    .service-table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 3px;
        color: #555;
    }
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.cke_notification_warning {
    display: none !important;
}

@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid #eaeaea;
    }

    .navbar-nav .dropdown-menu {
        padding-left: 1rem;
        background-color: #f9f9f9;
        border: none;
        box-shadow: none;
    }

    .dropdown-menu {
        border-bottom: 1px solid #eaeaea !important;
    }

    .navbar-nav .dropdown-item {
        font-size: 16px;
        padding: 10px 0;
    }

    .navbar-nav .dropdown-item:not(:last-child) {
        border-bottom: 1px dotted #ddd;
    }

    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 8px;
    }
}

.image-upload-wrapper {
    width: 150px;
    height: 150px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.image-upload-wrapper:hover {
    border-color: #007bff;
}

.image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.plus-icon {
    font-size: 2rem;
    color: #ccc;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #aaa;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 22px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    display: none;
    z-index: 10;
}

input[type="file"] {
    display: none;
}

.image-upload-text {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.form-check-input {
    width: 1.5em;
    height: 1.5em;
    border: 2px solid #6c757d;
    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.2);
}

.form-check-label {
    margin-left: 0.5em;
    font-weight: 500;
}

#notificationlist-container .list-group-item {
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s ease;
}

#notificationlist-container .list-group-item:hover {
    background-color: #f8f9fa;
}

.notification-time {
    font-size: 0.75rem;
    color: #6c757d;
}

.list-group-item i {
    width: 1.5rem;
    text-align: center;
}

.btn-light.rounded-circle {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.noti-button {
    color: white !important;
    background-color: #00B074;
    width: 40px;
}

.nav-link-h {
    display: block;
    padding: 0 10px 0 0;
    color: #00B074;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20%;
    border: 2px solid #eee;
}

@media (max-width: 768px) {
    .logo-img {
        margin: 0 auto;
        /* mobilon középre */
    }
}

#review,
#comments,
#map-container,
#doctors,
#gallery-card,
#services,
#review-messages {
    scroll-margin-top: 100px;
}

.card-img-sim {
    height: 120px;
    object-fit: contain;
    object-position: center;
}

.card-img-sml {
    height: 100px;
    object-fit: contain;
    object-position: center;
}

.card-img-top-posts {
    max-height: 400px;
    object-fit: cover;
}

.symptom-h1 {
    font-size: 30px;
}

.symptom-h2 {
    font-size: 22px;
}

.d-bg-color {
    background-color: rgb(167, 221, 123);
}

.s-bg-color {
    background-color: rgb(116, 171, 233);
}

.border-top-w {
    border-top: 2px solid #000000;
}

#scrollTopBtnScp {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: #28a745;
    color: white;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s;
}

#scrollTopBtnScp:hover {
    background-color: #1e7e34;
    transform: scale(1.1);
}

.private-doctors-container .card-header {
    cursor: pointer;
    transition: background 0.3s;
    background-color: #00B074;
}

.private-doctors-container .card-header:hover {
    background-color: #00995d;
}

.private-doctors-container .card-header i {
    color: #fff;
}


.private-doctors-container .card-header button i.fa-chevron-down {
    color: #00B074;
    transition: transform 0.3s;
}

.private-doctors-container .card-header button:not(.collapsed) i.fa-chevron-down {
    transform: rotate(180deg);
}

.private-doctors-container .list-group-item a {
    color: #333;
    transition: color 0.2s;
}

.private-doctors-container .list-group-item a h3:hover {
    color: #00B074;
    text-decoration: underline;
}

.color-mgreen {
    color: #00B074;
}


@media (max-width: 576px) {
    .private-doctors-container .card-header i {
        font-size: 18px;
    }

    .private-doctors-container .card-header span {
        font-size: 16px;
    }
}

.private-doctor-h2 {
    font-size: 20px;
    color: white;
}

.private-doctor-h3 {
    font-size: 17px;
    color: #333;
}

/* MedGO How To Add Object Page Styles */
#medgo-how-to-add-object .medgo-timeline {
    position: relative;
    margin: 40px auto;
    padding: 20px 0;
    width: 100%;
    max-width: 1200px;
}

#medgo-how-to-add-object .medgo-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(180deg, #00B074 0%, #00995d 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 0;
    display: none;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-timeline::after {
        display: block;
    }
}

#medgo-how-to-add-object .medgo-timeline-step {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-timeline-step {
        width: 50%;
        padding: 20px 40px;
        margin-bottom: 60px;
    }
    
    #medgo-how-to-add-object .medgo-timeline-step.medgo-left {
        left: 0;
        text-align: right;
        padding-right: 60px;
    }
    
    #medgo-how-to-add-object .medgo-timeline-step.medgo-right {
        left: 50%;
        text-align: left;
        padding-left: 60px;
    }
}

#medgo-how-to-add-object .medgo-timeline-step .medgo-content {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

#medgo-how-to-add-object .medgo-timeline-step .medgo-content:hover {
    box-shadow: 0 8px 30px rgba(0, 176, 116, 0.15);
    transform: translateY(-2px);
    border-color: #00B074;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-timeline-step .medgo-content {
        padding: 30px 25px;
    }
}

#medgo-how-to-add-object .medgo-timeline-step .medgo-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#medgo-how-to-add-object .medgo-timeline-step .medgo-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 176, 116, 0.2));
    transition: transform 0.3s ease;
}

#medgo-how-to-add-object .medgo-timeline-step .medgo-content:hover .medgo-icon img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-timeline-step .medgo-icon img {
        width: 80px;
        height: 80px;
    }
}

#medgo-how-to-add-object .medgo-timeline-step .medgo-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00B074 0%, #00995d 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 176, 116, 0.3);
    z-index: 2;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-timeline-step.medgo-left .medgo-step-number {
        right: -20px;
        left: auto;
        transform: translateX(50%);
    }
    
    #medgo-how-to-add-object .medgo-timeline-step.medgo-right .medgo-step-number {
        left: -20px;
        transform: translateX(-50%);
    }
}

#medgo-how-to-add-object .medgo-timeline-step h5 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-timeline-step h5 {
        font-size: 22px;
        text-align: left;
    }
    
    #medgo-how-to-add-object .medgo-timeline-step.medgo-left h5 {
        text-align: right;
    }
}

#medgo-how-to-add-object .medgo-timeline-step p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 10px;
    text-align: left;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-timeline-step p {
        font-size: 16px;
    }
}

#medgo-how-to-add-object .medgo-timeline-step ul {
    text-align: left;
    padding-left: 20px;
    margin: 15px 0;
}

#medgo-how-to-add-object .medgo-timeline-step ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-timeline-step ul li {
        font-size: 15px;
    }
}

#medgo-how-to-add-object .medgo-timeline-step ul li strong {
    color: #00B074;
    font-weight: 600;
}

#medgo-how-to-add-object .medgo-page-header {
    background: linear-gradient(135deg, #00B074 0%, #00995d 100%);
    color: white;
    padding: 50px 20px;
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px;
    text-align: center;
}

#medgo-how-to-add-object .medgo-page-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white !important;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-page-header {
        padding: 60px 20px;
        margin-bottom: 60px;
    }
    
    #medgo-how-to-add-object .medgo-page-header h1 {
        font-size: 36px;
    }
}

#medgo-how-to-add-object .medgo-page-header p {
    font-size: 16px;
    opacity: 0.95;
    margin: 0;
    color: white;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-page-header p {
        font-size: 18px;
    }
}

#medgo-how-to-add-object .medgo-intro-card {
    background: #f8f9fa;
    border: none;
    border-radius: 16px;
    padding: 25px 20px;
    margin-bottom: 40px;
    text-align: center;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-intro-card {
        padding: 30px 25px;
        margin-bottom: 50px;
    }
}

#medgo-how-to-add-object .medgo-intro-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 10px;
}

#medgo-how-to-add-object .medgo-intro-card p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #00B074;
}

#medgo-how-to-add-object .medgo-main-container {
    padding: 20px 15px;
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-main-container {
        padding: 40px 20px;
    }
}

@media (min-width: 768px) {
    #medgo-how-to-add-object .medgo-timeline-step.medgo-left::after {
        content: '';
        position: absolute;
        right: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 12px solid #00B074;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        z-index: 2;
    }
    
    #medgo-how-to-add-object .medgo-timeline-step.medgo-right::after {
        content: '';
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-right: 12px solid #00B074;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        z-index: 2;
    }
}