/* =============================================
   Production Analytica – Textile Costing
   Global CSS  (mirrors the original <style> block)
   ============================================= */

/* ---------- Fonts ---------- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar          { width: 6px; height: 6px; }
::-webkit-scrollbar-track    { background: transparent; }
::-webkit-scrollbar-thumb    { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ---------- Glassmorphism header ---------- */
.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ---------- Premium card shadow ---------- */
.premium-shadow {
    box-shadow:
        0 4px 20px -2px rgba(0, 0, 0, 0.03),
        0 0 3px rgba(0, 0, 0, 0.02);
}

/* ---------- Table row hover ---------- */
tbody tr {
    transition: all 0.2s ease;
}
tbody tr:hover {
    background-color: #f1f5f9;
}

/* ---------- Modal animations ---------- */
.modal-overlay {
    transition: opacity 0.3s ease;
}
.modal-content {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Blazor error UI ---------- */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
