/* Ensure footer stays at the bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#footer-placeholder {
    margin-top: auto;
}
footer {
    margin-top: auto;
}
/* Make navbar toggler icon white */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* custom.css */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th,
td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ccc;
}

th {
    background-color: #f4f4f4;
    font-weight: 600;
}

h1 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

footer {
    background-color: #003366;
    color: white;
    padding: 1rem 0;
}

.navbar {
    background-color: #003366 !important;
    color: white;
}

.navbar-brand {
    color: white !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link {
    color: white !important;
}

.navbar-nav .nav-item.dropdown:hover {
    background-color: #003366 !important;
    color: white !important;
}

:root {
    --bs-primary: #4a90e2;
    --bs-secondary: #6c757d;
    --bs-success: #28a745;
    --bs-danger: #dc3545;
    --bs-warning: #ffc107;
    --bs-info: #17a2b8;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
}
.card {
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}