/* Morouj Commodities LTD - Brand Design System & UI Styling */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
    --morouj-forest: #133e33;
    --morouj-forest-dark: #0c2b23;
    --morouj-forest-light: #1d5244;
    --morouj-green: #48a635;
    --morouj-green-light: #e8f5e5;
    --morouj-lime: #8cc63f;
    --morouj-orange: #f15a24;
    --morouj-orange-dark: #d44413;
    --morouj-orange-light: #fff0ea;
    --morouj-gold: #fbb03b;
    --morouj-gold-light: #fef8eb;
    --morouj-cream: #fafaf7;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    -webkit-tap-highlight-color: transparent;
    background-color: #f7f9f8;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

/* Hide native number input spinners for clean custom UI */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}
input[type=number] { 
    -moz-appearance: textfield; 
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #edf3f0;
}
::-webkit-scrollbar-thumb {
    background: #bcd1c7;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #89a89b;
}

/* Brand Card Styling */
.brand-card {
    background: #ffffff;
    border: 1px solid #e1ebe6;
    box-shadow: 0 4px 20px -2px rgba(19, 62, 51, 0.05);
}

.operator-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.operator-card:active {
    transform: scale(0.98);
}

/* Pulsing indicators for live plant monitoring */
.pulse-live {
    box-shadow: 0 0 0 0 rgba(72, 166, 53, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(72, 166, 53, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(72, 166, 53, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(72, 166, 53, 0);
    }
}
