/**
 * Responsive Styles
 */

/* Large Desktops (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .navbar-nav {
        flex-direction: column;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .search-bar {
        margin-top: -2rem;
        padding: 1rem;
    }
    
    .dashboard-sidebar {
        min-height: auto;
        margin-bottom: 2rem;
    }
    
    .dashboard-content {
        padding: 1rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card .stat-icon {
        float: none;
        display: block;
        margin-bottom: 1rem;
    }
    
    .step-indicator {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 10px;
    }
    
    .step-indicator::before {
        display: none;
    }
    
    .step .step-label {
        font-size: 0.8rem;
        padding: 0 2px;
    }
    
    .step .step-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .card-img-top {
        height: 150px;
    }
    
    .category-icon {
        font-size: 2rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .dashboard-header {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .dashboard-sidebar {
        display: none;
    }
    
    .dashboard-content {
        padding: 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
}

