/* Custom Styles for Transportation Accounting System */

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

.navbar-brand {
    font-weight: bold;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header {
    background-color: #0d6efd;
    color: white;
    font-weight: bold;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.table th {
    background-color: #e9ecef;
}

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 20px 0;
    margin-top: 20px;
}

.dashboard-card {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
}

.bg-blue {
    background-color: #0d6efd;
}

.bg-green {
    background-color: #198754;
}

.bg-orange {
    background-color: #fd7e14;
}

.bg-red {
    background-color: #dc3545;
}

.text-large {
    font-size: 2em;
    font-weight: bold;
}