@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

header {
    background-color: #000000;
    color: #fff;
    padding: 0;
}

header h1 {
    text-align: center;
    margin: 0;
    font-size: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #0056b3;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 0.5rem;
    margin-top: auto; /* Keeps footer at the bottom */
}

main {
    flex: 1;
    margin: 20px auto;
    max-width: 800px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

table th {
    background: #2c3e50;
    color: black;
    font-weight: bold;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1; /* Allows main content to grow */
}

table th {
    color: black !important;
}

/* Custom styling for bottom alerts */
.alert {
    margin-bottom: 15px;
    width: 30%;
}
.position-fixed {
    position: fixed !important;
}
.bottom-0 {
    bottom: 0 !important;
}
.start-50 {
    left: 50% !important;
}
.translate-middle-x {
    transform: translateX(-50%) !important;
}

