:root {
    --brand-primary: #2B6CB0;    /* Rich blue */
    --brand-secondary: #38A169;  /* Pleasant green */
    --brand-light: #EBF8FF;     /* Light blue background */
    --brand-dark: #2C5282;      /* Darker blue for hover */
    --brand-gray: #F7FAFC;      /* Very light gray/blue */
}

body {
    background-color: var(--brand-light) !important;
}

/* Navbar styling */
.navbar {
    background-color: white !important;
    border-bottom: 3px solid var(--brand-primary) !important;
}

.navbar-brand {
    color: var(--brand-primary) !important;
    font-weight: 500;
}

.navbar-brand i {
    color: var(--brand-secondary) !important;
    font-size: 1.4em;
}

/* Calendar Container */
.calendar-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(43, 108, 176, 0.08);
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Booking List Styles */
.card {
    border: none !important;
    box-shadow: 0 2px 12px rgba(43, 108, 176, 0.08) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.card-header {
    border-bottom: 2px solid var(--brand-light) !important;
}

.booking-month h6 {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--brand-primary);
}

.booking-item {
    background-color: white;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.booking-item:hover {
    background-color: var(--brand-gray);
}

.booking-date {
    line-height: 1.4;
}

.badge {
    font-weight: 500;
    padding: 0.5em 0.8em;
    background-color: var(--brand-primary) !important;
}

/* Empty State */
.text-muted i {
    opacity: 0.7;
    color: var(--brand-secondary) !important;
}

/* Admin button */
.btn-outline-secondary {
    color: var(--brand-primary) !important;
    border-color: var(--brand-primary) !important;
}

.btn-outline-secondary:hover {
    background-color: var(--brand-primary) !important;
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking-date {
        font-size: 0.95rem;
    }
    
    .booking-month h6 {
        font-size: 0.8rem;
    }

    .calendar-container {
        border-radius: 0;
        padding: 0.5rem;
    }
}

/* Calendar customization */
.fc .fc-daygrid-day.fc-day-today {
    background-color: var(--brand-light) !important;
}

.fc-event {
    border-radius: 4px !important;
    border: none !important;
}

/* Additional calendar tweaks */
.fc .fc-toolbar-title {
    color: var(--brand-primary);
}

.text-primary {
    color: var(--brand-primary) !important;
}

/* Card title icon color */
.card-title i {
    color: var(--brand-secondary) !important;
} 