/* Custom style overrides for OKK System Diagnostics Dashboard (Light Theme) */

body {
    background-color: #fff8f7;
    background-image: radial-gradient(#F2F2F2 1px, transparent 1px);
    background-size: 32px 32px;
    color: #1a1c1c;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* OKK Card container */
.glass-card {
    background: #ffffff;
    border: 1px solid #000000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: #e31b23;
    box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.15);
    transform: translate(-2px, -2px);
}

/* OKK primary red action button */
.glow-button {
    background-color: #e31b23;
    color: #ffffff;
    border: 1.5px solid #000000;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glow-button:hover {
    background-color: #000000;
    color: #ffffff;
    box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.15);
    transform: translate(-2px, -2px);
}

.text-glow {
    text-shadow: 0 0 10px rgba(227, 27, 35, 0.15);
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Disabled Aurora anim for Light minimal theme */
.aurora-element {
    display: none;
}

/* Custom Scrollbars */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #e31b23;
}

/* Logging lines styles */
.console-line {
    word-break: break-all;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    line-height: 1.5;
}

.line-system {
    color: #5d5f5f;
}

.line-info {
    color: #1a1c1c;
}

.line-success {
    color: #b90014;
    font-weight: 600;
}

.line-warning {
    color: #b86200;
}

.line-error {
    color: #ba1a1a;
    font-weight: 600;
}
