/*-- Use For Custom Styling --*/

/* Hero Banner Background Image with Teal Gradient Overlay */
.slider-area {
    background: linear-gradient(to right, rgba(64, 186, 164, 0.88) 2%, rgba(27, 151, 161, 0.88) 82%), url('../img/bg-auth-sulaiman.jpg') no-repeat center center !important;
    background-size: cover !important;
}

/* Schedule Section */
.schedule-sec {
    background-color: #f4f8f9 !important;
    padding: 7.5rem 0;
}

.schedule-tabs {
    margin-bottom: 3rem;
    gap: 0.5rem;
}

.schedule-tabs .btn {
    border: 2px solid #40baa4 !important;
    background-color: transparent !important;
    color: #40baa4 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease-in-out !important;
    box-shadow: none !important;
}

.schedule-tabs .btn:hover,
.schedule-tabs .btn.active {
    background: linear-gradient(to right, #40baa4 2%, #1b97a1 82%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(64, 186, 164, 0.35) !important;
}

/* Schedule Cards styling */
.schedule-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05) !important;
    border: none !important;
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.bg-gradient-teal {
    background: linear-gradient(to right, #40baa4 2%, #1b97a1 82%);
}

.schedule-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.schedule-icon-wrap i {
    font-size: 22px;
    color: #ffffff;
}

.text-teal {
    color: #1b97a1 !important;
}

.doctor-name {
    font-size: 17px !important;
    font-family: 'Raleway', sans-serif;
    color: #233e3a !important;
    margin-bottom: 0.75rem !important;
}

.schedule-list li {
    font-size: 14.5px !important;
    line-height: 2 !important;
    border-bottom: 1px dashed #f0f4f5;
    padding: 4px 0;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.day-name {
    font-weight: 500;
}

.time-range {
    color: #2d2d2d;
    font-weight: 600;
}

.font-weight-500 {
    font-weight: 500;
}

/* Tab filter animations */
@keyframes fadeInUpSubtle {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUpSubtle 0.5s ease forwards;
}

/* Dual Brand Logo styling in Navbar */
.navbar-brand-dual {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Fixed nav brand spacing */
.fix-top .navbar-brand img {
    height: 42px;
}

/* ===================================
   Bed Availability Section
====================================== */

.bed-sec {
    background: #ffffff;
    padding: 7.5rem 0;
}

/* Summary Cards */
.bed-summary-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 20px 22px;
    box-shadow: 0 6px 28px rgba(64, 186, 164, 0.09);
    border: 1px solid #e8f7f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.bed-summary-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(64, 186, 164, 0.18);
}

.bed-summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 0 auto 14px;
}

.bed-summary-icon i {
    font-size: 26px;
}

.bg-teal-soft  { background-color: rgba(64, 186, 164, 0.12); }
.bg-green-soft { background-color: rgba(40, 167, 69, 0.1); }
.bg-red-soft   { background-color: rgba(220, 53, 69, 0.1); }

.bed-summary-number {
    font-size: 42px;
    font-weight: 800;
    font-family: 'Raleway', sans-serif;
    line-height: 1;
    margin-bottom: 6px;
}

.bed-summary-label {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Update label & legend */
.bed-update-label {
    font-size: 13px;
    color: #6c757d;
    font-style: italic;
}

.bed-legend {
    gap: 6px;
}

.bed-badge {
    font-size: 13px;
    font-weight: 600;
}

.bed-badge-available { color: #28a745; }
.bed-badge-partial   { color: #fd7e14; }
.bed-badge-full      { color: #dc3545; }

/* Bed Table */
.bed-table-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
    border: 1px solid #e8f7f5;
}

.bed-table {
    border-collapse: collapse;
    font-size: 15px;
}

.bed-table thead tr {
    background: linear-gradient(to right, #40baa4 2%, #1b97a1 82%);
    color: #ffffff;
}

.bed-table thead th {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    border: none;
}

.bed-table tbody tr {
    border-bottom: 1px solid #f0f6f5;
    transition: background-color 0.2s ease;
}

.bed-table tbody tr:hover {
    background-color: #f0fbf9;
}

.bed-table tbody tr:last-child {
    border-bottom: none;
}

.bed-table tbody td {
    padding: 14px 20px;
    color: #333;
    vertical-align: middle;
}

.bed-table tfoot .bed-table-total {
    background-color: #f4f8f9;
    border-top: 2px solid #40baa4;
}

.bed-table tfoot td {
    padding: 14px 20px;
    font-size: 15px;
}

/* Status Badges inside table */
.badge-available {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    background-color: rgba(40, 167, 69, 0.12);
    color: #1e7e34;
}

.badge-partial {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    background-color: rgba(253, 126, 20, 0.12);
    color: #c96e00;
}

.badge-full {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    background-color: rgba(220, 53, 69, 0.12);
    color: #bd2130;
}

/* Disclaimer box */
.bed-disclaimer {
    background: #f0fbf9;
    border-left: 4px solid #40baa4;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}