@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    color: #333;
}

.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.premium-card {
    background: #ffffff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-primary-custom:hover {
    opacity: 0.9;
    color: white;
}

.btn-success-custom {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
    color: white;
    border-radius: 8px;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-new { background-color: #ffebee; color: #d32f2f; }
.status-progress { background-color: #fff3e0; color: #f57c00; }
.status-ready { background-color: #e8f5e9; color: #388e3c; }
.status-paid { background-color: #e3f2fd; color: #1976d2; }

/* New Order Animation */
@keyframes highlight-new {
    0% { background-color: #fff9c4; transform: scale(1.02); }
    100% { background-color: #ffffff; transform: scale(1); }
}

.new-order-anim {
    animation: highlight-new 2s ease-out;
}

.form-control-custom {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
}
.form-control-custom:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.nav-link-custom {
    font-weight: 500;
    color: #555;
    transition: color 0.2s;
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: #667eea;
}
