/* ============================================
   YOLOv8 Traffic Analyzer - Global Styles
   Loaded on every page via base.html
   ============================================ */

/* -- Layout -- */

body {
    background-color: #f5f6fa;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* -- Cards -- */

.card {
    border-radius: 8px;
}

.card-header {
    font-weight: 600;
    font-size: 0.9rem;
}

.job-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: 1px solid #e0e0e0;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* -- Forms -- */

.drop-zone {
    border: 2px dashed #ced4da;
    transition: border-color 0.2s, background-color 0.2s;
    cursor: pointer;
}

.drop-zone:hover,
.drop-zone.border-primary {
    border-color: #0d6efd;
    background-color: #f0f7ff;
}

/* -- Progress -- */

.progress {
    border-radius: 6px;
}

/* -- Badges -- */

.badge {
    font-weight: 500;
}

/* -- Typography -- */

.display-6 {
    font-size: 2rem;
}

.section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 8px;
}

/* -- Tables -- */

.sticky-top {
    z-index: 1;
}

/* -- Responsive -- */

@media (max-width: 768px) {
    .display-6 {
        font-size: 1.5rem;
    }
}
