﻿ 
@media (max-width: 575.98px) {
    .pagination .page-item:not(.active):not(:first-child):not(:last-child)

{
    display: none;
}

}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    top: 2px;
}

    .status-dot.available {
        background-color: #28a745;
        animation: blink 1.5s infinite;
    }

    .status-dot.unavailable {
        background-color: #dc3545;
    }

    .status-dot.emergency {
        background-color: #e60000;
    }

    .status-dot.busy {
        background-color: #fd7e14;
    }

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0.3;
    }
}
 



















.doctor-card {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.08);
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-left: 5px solid #007BFF;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 10px 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .1);
}

@media (max-width: 600px) {
    .search-bar {
        padding: 6px 10px;
        max-width: 90%;
    }

        .search-bar i {
            font-size: 1rem;
            margin-right: 8px;
        }

        .search-bar input {
            font-size: 0.95rem;
        }
}

.doctor-info small {
    font-size: 13px;
}

.doctor-meta i {
    color: #007BFF;
    margin-right: 5px;
}

.text-muted {
    color: #6c757d !important;
}

.badge-speciality {
    font-weight: 500;
    display: inline-block;
    margin-bottom: 6px;
    background-color: #e3f2fd;
    color: #007bff;
    font-size: 0.8rem;
    margin-right: 6px;
    padding: 4px 10px;
    border-radius: 30px;
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.doctor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.1);
}

.skeleton-card {
    height: 250px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: shimmer 1.2s infinite linear;
    border-radius: 10px;
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
} 
.hide {
    display: none;
} 
.pointer-events-none {
    pointer-events: none;
}
.opacity-50 {
    opacity: 0.5;
}

.opacity-70 {
    opacity: 0.7;
}

.no-hover:hover {
    background-color: inherit !important;
    cursor: default !important;
}

.no-animation {
    transition: none !important;
    animation: none !important;
}


.header-bar {
    background-color: #eaf3f7;
    padding: 10px 15px;
    border-radius: 30px;
}

.breadcrumb span {
    color: #333;
    font-size: 14px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb i {
    margin-right: 4px;
}

.share-btn {
    background-color: #fff;
    color: #007bff;
    padding: 6px 15px;
    font-weight: 600;
    border-radius: 30px;
    font-size: 14px;
}

.doctor-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.doctor-img {
    width: 110px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
}

.doctor-name {
    font-size: 17px;
    font-weight: bold;
    color: #004080;
}

.badge-speciality {
    background-color: #d8efff;
    color: #004080;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 6px;
}

.slot-day {
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    padding: 5px;
    font-size: 13px;
    min-width: 70px;
    cursor: pointer;
}

    .slot-day.active {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }

.date-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.time-slot-btn {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 5px 10px;
    background: white;
    font-size: 12px;
    cursor: pointer;
}

.time-slot-btn.active {
background-color: #007bff;
color: #fff;
border-color: #007bff;
    }

.btn-call {
    background-color: #004080;
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
}

.btn-book {
    border: 2px solid #004080;
    color: #004080;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
}

    .btn-book:hover {
        background-color: #004080;
        color: white;
    }

.date-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

    .date-nav button {
        border: none;
        background: transparent;
        font-size: 18px;
        color: #004080;
        cursor: pointer;
    }

.header-bar {
    background-color: #fff;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.breadcrumb-custom {
    font-size: 14px;
    color: #444;
    white-space: nowrap;
}

.breadcrumb-icon i {
    color: #007bff;
    font-size: 15px;
}

.breadcrumb-link {
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

    .breadcrumb-link:hover {
        color: #0056b3;
        text-decoration: underline;
    }

.breadcrumb-separator {
    color: #888;
    font-size: 14px;
}
