/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {
    border: none;
    border-radius: 10px;
}

.form-container {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #343a40;
    color: white;
    margin-top: 50px;
}

/* Table Styles */
.table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

/* Color Themes for Different Pages */
/* These will be overridden in individual pages */

/* Status badges */
.badge {
    font-size: 0.8em;
    padding: 5px 10px;
}

/* Form validation */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-header h3 {
        font-size: 1.2rem;
    }
}