body {
    font-family: 'Roboto', sans-serif;
    /* Updated font family */
    background-color: #f8f9fa;
    /* Light background for better contrast */
    color: #333;
    /* Darker text color for readability */
    font-size: 12px; /* Adjusted base font size to 12px */
}

h1 {
    font-weight: 700;
    /* Bold for headings */
    margin-bottom: 20px;
    /* Spacing below heading */
    font-size: 20px; /* Adjusted heading size to 20px */
}

.form-control {
    border-radius: 0.25rem;
    /* Rounded corners for inputs */
    border: 1px solid #ced4da;
    /* Subtle border */
    font-size: 12px; /* Adjusted input font size to 12px */
}

/* Bootstrap 5 Button Customization */
.btn {
    font-size: 10px; 
    padding: 5px 5px; /* Adjusted padding for a more comfortable button size */
}

.btn-primary {
    background-color: #007bff;
    /* Primary button color */
    border: none;
    /* Remove border */
    border-radius: 0.25rem;
    /* Rounded corners for buttons */
}

.btn-primary:hover {
    background-color: #0056b3;
    /* Darker shade on hover */
}

.notification {
    display: none;
    margin-top: 15px;
}

.badge-success {
    background-color: #28a745; /* Bright green for confirmed */
    color: white; /* White text for contrast */
    font-size: 11px; /* Adjusted badge font size to 12px */
    font-weight: bold;
    border: 1px solid #28a745;
    padding: 3px 8px;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px rgba(23,162,184,0.08);
    letter-spacing: 0.5px;
}

.badge-warning {
    background-color: #ffc107; /* Bright yellow for tentative */
    color: black; /* Black text for contrast */
    font-size: 11px; /* Adjusted badge font size to 12px */
    font-weight: bold;
    border: 1px solid #ffc107;
    padding: 3px 8px;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px rgba(23,162,184,0.08);
    letter-spacing: 0.5px;
}

.badge-danger {
    background-color: #dc3545; /* Bright red for cancelled */
    color: white; /* White text for contrast */
    font-size: 11px; /* Adjusted badge font size to 12px */
    font-weight: bold;
    border: 1px solid #dc3545;
    padding: 3px 8px;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px rgba(23,162,184,0.08);
    letter-spacing: 0.5px;
}

.badge-secondary {
    background-color: #6c757d; /* Dark grey for pending */
    color: white; /* White text for contrast */
    font-size: 11px; /* Adjusted badge font size to 12px */
    font-weight: bold;
    border: 1px solid #6c757d;
    padding: 3px 8px;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px rgba(23,162,184,0.08);
    letter-spacing: 0.5px;
}

.badge-info {
    background-color: #17a2b8; /* Bootstrap info blue */
    color: #fff; /* White text for contrast */
    font-size: 11px; /* Slightly larger for visibility */
    font-weight: bold;
    border: 1px solid #138496;
    padding: 3px 8px;
    border-radius: 0.25rem;
    box-shadow: 0 1px 2px rgba(23,162,184,0.08);
    letter-spacing: 0.5px;
}

/* Login Form Specific Styles */
.login-container {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 20px;
    overflow-y: auto;
}

.login-card {
    width: 400px;
    height: 350px;
    padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: white;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.login-form h1 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.login-form .form-control {
    font-size: 0.875rem;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
}

.login-form .btn {
    font-size: 0.875rem;
    padding: 0.5rem;
    margin-top: 0.75rem;
}

.login-form .form-label {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Media queries for better responsiveness */
@media (max-width: 576px) {
    .login-card {
        width: 300px;
        height: 300px;
        padding: 1.5rem;
    }
    
    .login-form h1 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}