/* Custom styles for the Boarding Management System.
   Bootstrap 5 handles the bulk; this file holds project-specific tweaks. */

body {
    min-height: 100vh;
}

.navbar-brand {
    letter-spacing: 0.3px;
}

/* Room/bed grid map (Phase 2) */
.bed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.bed-cell {
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
}

.bed-cell.vacant   { background-color: #198754; }  /* green */
.bed-cell.occupied { background-color: #dc3545; }  /* red */
