/* Doctor Card */
.doctor-card {
    background: #d6f1f9;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 45, 98, 0.08);
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 45, 98, 0.15);
}

/* Image */
.doctor-img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Name */
.doctor-name {
    font-size: 22px;
    font-weight: 700;
    color: #0b2c4d;
    margin-bottom: 5px;
}

/* Department */
.doctor-dept {
    color: #0073e6;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Info text */
.doctor-card p {
    margin-bottom: 6px;
    font-size: 15px;
    color: #555;
}

/* ===============================
   BUTTON GROUP
================================ */

.doctor-btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    width: 100%;
}

/* Base Button Style */
.doctor-btn-group .btn {
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

/* View Profile */
.btn-outline-primary {
    background: #0d5bbf;
    border: none;
    color: #ffffff;
}

.btn-outline-primary:hover {
    background: #094db1;
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(13,91,191,0.35);
}

/* Book Appointment */
.btn-appoint {
    background: linear-gradient(145deg, #0d5bbf, #084a9e);
    border: none;
    color: #ffffff !important;
}

.btn-appoint:hover {
    background: linear-gradient(145deg, #0b4fa8, #063a82);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(8,74,158,0.35);
}

/* Quick Booking - Red Solid */
.btn-quick-book {
    background-color: #dc3545 !important;
    border: none !important;
    color: #ffffff !important;
}

.btn-quick-book:hover {
    background-color: #b02a37 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}
/* Button Press Effect */
.doctor-btn-group .btn:active {
    transform: translateY(1px);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.15);
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px){
    .doctor-card {
        text-align: center;
    }
}

@media(max-width:480px){
    .doctor-btn-group {
        justify-content: center;
    }
}

/* Remove sidebar on single doctor page */
.single-doctor .sidebar,
.single-doctor aside,
.single-doctor .widget-area,
.single-doctor .col-lg-4,
.single-doctor .col-md-4 {
    display: none !important;
}

/* Make content full width */
.single-doctor .col-lg-8,
.single-doctor .col-md-8 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}