.info-account__body span {
    color: #FFFFFF;
}

.item-config__video {
    padding: 0 !important;
    width: 192px;
}

.appoint__table-notice {
    text-align: left;
    /*font-size: 14px;*/
    font-weight: 500;
    /*color: #FFFFFF;*/
}

.video-select {
    margin-bottom: 30px;
    display: none;
}

.settings-btn {
    padding-top: 30px;
}

.no-available-days {
    width: 320px;
    font-size: 18px;
    font-weight: 500;
}

/* Custom CSS for calendar */
.fc-event-title {
    white-space: normal !important;
    word-wrap: break-word;
    overflow: visible !important;
}

.fc-event-time {
    display: none;
}

.fc-toolbar-title {
    font-size: 16px !important;
    font-weight: bold;
}

.popover {
    max-width: 300px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 10000;
}

.popover-header {
    background-color: #F4C211;
    border-bottom: 1px solid #dee2e6;
    color: #495057;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.popover-body {
    color: #212529;
    padding: 0.75rem;
    font-size: 0.9rem;
    line-height: 20px;
    padding: 15px;
    z-index: 10000;
}

.popover .arrow::before {
    border-top-color: #dee2e6;
}

.popover .arrow::after {
    border-top-color: #f8f9fa;
}

.popover:hover {
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.25);
}

.specialists-list {
    margin-top: 5px;
}

.specialists-list a {
    color: #F4C211;
}

/** Custom CSS for doctors and specializations */
.doctors__filter {
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid;
    padding-bottom: 25px;
}

.filter-scrollable {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 10px; /* Space for scrollbar */
    scrollbar-width: thin;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.filter-scrollable::-webkit-scrollbar {
    height: 4px;
}

.filter-scrollable::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.filter-scrollable::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.filter-scrollable .btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 20px 34px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.filter-scrollable .btn:hover {
    background-color: #F4C210;
    color: #000;
    /*border: none;*/
}

.filter-scrollable .btn.active {
    background-color: #F4C210;
    color: #000;
    border: none;
}

/* Doctor specialization tags */
.card-doctor__specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    padding: 0 15px;
}

.card-doctor__tag {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 12px;
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .doctors__filter {
        margin-bottom: 20px;
    }

    .filter-scrollable .btn {
        padding: 15px 24px;
        font-size: 14px;
    }

    .card-doctor__tag {
        font-size: 11px;
        padding: 2px 6px;
    }
}

.doctors__no-results {
    width: 100%;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
}

.products-section {
    width: 100%;
    margin-bottom: 30px;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.product-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.product-item h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.product-item .price {
    font-size: 20px;
    font-weight: bold;
    color: #f4c210;
    margin: 0;
}

.selected-product-section {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 15px;
}

.selected-product {
    background: #f1f1f1;
    border-radius: 10px;
    padding: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.selected-product h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.selected-product .price {
    font-size: 16px;
    /*color: #f4c210;*/
    margin-top: 10px;
}

.schedule-section {
    width: 100%;
}

@media (max-width: 768px) {
    .products-list {
        grid-template-columns: 1fr;
    }

    .selected-product-section {
        padding: 0 10px;
    }
}

.doc-timetable__content {
    display: flex;
    gap: 30px;
    width: 100%;
}

.doc-timetable__left {
    flex: 0 0 400px;
}

.doc-timetable__right {
    flex: 1;
}

.doc-timetable__datepicker {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.doc-timetable__appoint {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
}

@media (max-width: 992px) {
    .doc-timetable__content {
        flex-direction: column;
    }

    .doc-timetable__left {
        flex: 0 0 auto;
        width: 100%;
    }
}

/**
Cabinet CSS
 */

.account-packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.package-card {
    background: #fff;
    /*border-radius: 12px;*/
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.package-header {
    background: #f4c210;
    color: black;
    padding: 16px 20px;
    text-align: center;
}

.package-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.package-body {
    padding: 20px;
}

.consultation-info, .validity-info {
    margin-bottom: 20px;
}

.info-value {
    font-size: 28px;
    font-weight: 700;
    color: #240046;
    margin-bottom: 4px;
}

.info-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.progress-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #5a189a, #7b2cbf);
    border-radius: 3px;
}

.validity-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.empty-packages {
    background: #160728;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.empty-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.empty-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.btn-primary {
    background: #f4c210;
    color: black;
    padding: 20px 34px;
    border-radius: 39px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover {
    opacity: 0.8;
}

/**
Terms Notice CSS
 */

.terms-notice {
    margin-top: 20px;
    font-size: 11px;
    line-height: 140%;
    color: #160728;
}

.terms-notice a {
    color: #160728;
    text-decoration: underline;
}

.form-errors {
    color: #ff0000;
    /*font-size: 14px;*/
    margin-top: 10px;
    background-color: rgba(255, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 20px;
}

.form-errors ul {
    list-style-type: circle;
    padding-top: 10px;
    margin: 0;
}

.form-errors li {
    margin-bottom: 5px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    padding: 15px;
    margin-bottom: 20px;
}

.empty-history {
    margin-top: 40px;
}

.consultation-action__msg {
    margin-bottom: 20px;
}

/* Responsive filter buttons for doctors specializations */
.doctors__filter-buttons {
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
}

/* Desktop styles - buttons wrap to new lines */
@media (min-width: 769px) {
    .doctors__filter-buttons {
        flex-wrap: wrap;
        overflow: visible;
    }
}

/* Mobile styles - horizontal scroll */
@media (max-width: 768px) {
    .doctors__filter-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .doctors__filter-buttons::-webkit-scrollbar {
        height: 4px;
    }

    .doctors__filter-buttons::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }

    .doctors__filter-buttons::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
}

.doctors__filter-buttons .btn {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 20px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: auto;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.doctors__filter-buttons .btn:hover {
    background-color: #F4C210;
    color: #000;
}

.doctors__filter-buttons .btn.active {
    background-color: #F4C210;
    color: #000;
    border: none;
}

/* Mobile responsive button styles */
@media (max-width: 768px) {
    .doctors__filter-buttons .btn {
        padding: 15px 24px;
        font-size: 14px;
        margin-right: 10px;
    }
}
