/* Custom Styles for Fashion Warehouse Booking System */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    margin-bottom: 20px;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-header {
    font-weight: bold;
}

.btn-primary {
    background-color: #3a5a78;
    border-color: #3a5a78;
}

.btn-primary:hover {
    background-color: #2c4660;
    border-color: #2c4660;
}

.booking-slot {
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

.booking-slot.available {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-slot.unavailable {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    cursor: not-allowed;
}

.booking-slot.selected {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.dashboard-stats {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-stats i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3a5a78;
}

.dashboard-stats h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.dashboard-stats p {
    color: #6c757d;
}

.status-confirmed {
    color: #28a745;
}

.status-cancelled {
    color: #dc3545;
}

.status-completed {
    color: #17a2b8;
}

/* Calendar styles */
.calendar-day {
    height: 100px;
    overflow-y: auto;
}

.calendar-day-header {
    background-color: #f8f9fa;
    font-weight: bold;
    text-align: center;
    padding: 5px;
}

.calendar-day.today {
    background-color: #fff3cd;
}

.calendar-day.has-events {
    background-color: #d1ecf1;
}

/* Form styles */
.form-control:focus {
    border-color: #3a5a78;
    box-shadow: 0 0 0 0.2rem rgba(58, 90, 120, 0.25);
}

/* Login/Register pages */
.auth-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-stats {
        margin-bottom: 20px;
    }
}