/* PM Job Budget Tracker - Custom Styles */

body {
    background-color: #f8f9fa;
}

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

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

.table th {
    white-space: nowrap;
}

.table td {
    vertical-align: middle;
}

/* Summary Board Styling */
.table-responsive {
    border-radius: 0.375rem;
    overflow: hidden;
}

/* Status badges */
.badge {
    font-weight: 500;
}

/* Progress bars */
.progress {
    border-radius: 0.25rem;
}

/* Form styling */
.form-label {
    font-weight: 500;
}

.input-group-text {
    background-color: #e9ecef;
}

/* Tab content */
.tab-content {
    background-color: white;
    border-radius: 0 0 0.375rem 0.375rem;
}

.nav-tabs .nav-link {
    color: #495057;
}

.nav-tabs .nav-link.active {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn-sm {
        padding: 0.2rem 0.4rem;
        font-size: 0.75rem;
    }
}

/* Alert styling */
.alert {
    border: none;
    border-radius: 0.375rem;
}

/* Footer */
footer {
    border-top: 1px solid #dee2e6;
}

/* Currency formatting */
.text-end {
    font-variant-numeric: tabular-nums;
}

/* Budget status colors */
.budget-critical {
    background-color: #f8d7da !important;
}

.budget-warning {
    background-color: #fff3cd !important;
}

.budget-ok {
    background-color: #d1e7dd !important;
}
