/* ===== ecoKode Global Styles ===== */
:root {
    --ek-primary: #006039;
    --ek-primary-light: #00804d;
    --ek-primary-dark: #004d2e;
    --ek-secondary: #1565c0;
    --ek-secondary-light: #1976d2;
    --ek-accent: #f5a623;
    --ek-accent-light: #ffb74d;
    --ek-white: #ffffff;
    --ek-bg: #f8f9fa;
    --ek-bg-light: #f0f4f3;
    --ek-text: #212529;
    --ek-text-muted: #6c757d;
    --ek-border: #dee2e6;
    --ek-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --ek-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --ek-radius: 10px;
    --ek-radius-lg: 16px;
    --ek-transition: all 0.3s ease;
    --ek-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --ek-teal: #0d9488;
    --ek-teal-dark: #0f766e;
    --ek-mint: #34d399;
    --ek-mint-light: #6ee7b7;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    font-family: var(--ek-font);
    color: var(--ek-text);
    margin: 0;
    padding: 0;
    background: var(--ek-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

a {
    color: var(--ek-primary);
    text-decoration: none;
    transition: var(--ek-transition);
}

a:hover {
    color: var(--ek-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Buttons ===== */
.btn-ek-primary {
    background: var(--ek-primary);
    color: var(--ek-white);
    border: none;
    padding: 12px 32px;
    border-radius: var(--ek-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--ek-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ek-primary:hover {
    background: var(--ek-primary-light);
    color: var(--ek-white);
    transform: translateY(-2px);
    box-shadow: var(--ek-shadow);
}

.btn-ek-secondary {
    background: var(--ek-secondary);
    color: var(--ek-white);
    border: none;
    padding: 12px 32px;
    border-radius: var(--ek-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--ek-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ek-secondary:hover {
    background: var(--ek-secondary-light);
    color: var(--ek-white);
    transform: translateY(-2px);
    box-shadow: var(--ek-shadow);
}

.btn-ek-accent {
    background: var(--ek-accent);
    color: var(--ek-white);
    border: none;
    padding: 12px 32px;
    border-radius: var(--ek-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--ek-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ek-accent:hover {
    background: var(--ek-accent-light);
    color: var(--ek-white);
    transform: translateY(-2px);
    box-shadow: var(--ek-shadow);
}

.btn-ek-outline {
    background: transparent;
    color: var(--ek-primary);
    border: 2px solid var(--ek-primary);
    padding: 10px 30px;
    border-radius: var(--ek-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--ek-transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-ek-outline:hover {
    background: var(--ek-primary);
    color: var(--ek-white);
    transform: translateY(-2px);
    box-shadow: var(--ek-shadow);
}

/* ===== Cards ===== */
.ek-card {
    background: var(--ek-white);
    border-radius: var(--ek-radius-lg);
    box-shadow: var(--ek-shadow);
    padding: 2rem;
    transition: var(--ek-transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.ek-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ek-shadow-lg);
}

/* ===== Sections ===== */
.ek-section {
    padding: 5rem 0;
}

.ek-section-alt {
    padding: 5rem 0;
    background: var(--ek-bg);
}

.ek-section-dark {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--ek-teal-dark) 0%, var(--ek-teal) 40%, var(--ek-mint) 100%);
    color: var(--ek-white);
    position: relative;
    overflow: hidden;
}

.ek-section-dark::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.ek-section-dark::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.ek-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ek-container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

.ek-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--ek-text);
    margin-bottom: 1rem;
}

.ek-section-subtitle {
    font-size: 1.125rem;
    color: var(--ek-text-muted);
    max-width: 680px;
    margin: 0 auto 3rem;
}

.text-center {
    text-align: center;
}

/* ===== Hero ===== */
.ek-hero {
    background: linear-gradient(165deg, #ffffff 0%, #f7fcf9 30%, #eef8f2 60%, #e6f5ed 100%);
    color: var(--ek-text);
    padding: 3.5rem 2rem 4rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.ek-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(0, 96, 57, 0.08) 0%, transparent 65%);
    pointer-events: none;
    animation: ek-pulse-slow 8s ease-in-out infinite;
}

.ek-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 45%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: ek-pulse-slow 10s ease-in-out infinite reverse;
}

@keyframes ek-pulse-slow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes ek-fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes ek-fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes ek-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes ek-float-particle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(90deg); }
    50% { transform: translate(0, -25px) rotate(180deg); }
    75% { transform: translate(-10px, -15px) rotate(270deg); }
}

/* Hero Layout */
.ek-hero-row {
    display: flex;
    align-items: center;
    gap: clamp(3rem, 5vw, 6rem);
}

.ek-hero-content {
    flex: 1 1 45%;
    min-width: 0;
    position: relative;
    z-index: 2;
    animation: ek-fadeInUp 0.8s ease-out;
}

.ek-hero-visuals {
    flex: 1 1 50%;
    min-width: 0;
    position: relative;
    aspect-ratio: 1 / 0.9;
    min-height: 450px;
    max-height: 600px;
    animation: ek-fadeInRight 1s ease-out 0.3s both;
}

/* Hero Badge */
.ek-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 96, 57, 0.1) 0%, rgba(0, 137, 90, 0.1) 100%);
    border: 1px solid rgba(0, 96, 57, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ek-primary);
    margin-bottom: 1rem;
    animation: ek-fadeInUp 0.8s ease-out 0.1s both;
}

/* Hero Title */
.ek-hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--ek-text);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    animation: ek-fadeInUp 0.8s ease-out 0.2s both;
}

.ek-hero h1 span {
    display: block;
}

.ek-hero h1 .ek-highlight {
    background: linear-gradient(135deg, var(--ek-primary) 0%, var(--ek-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ek-hero p {
    font-size: 1.125rem;
    color: var(--ek-text-muted);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    max-width: 520px;
    position: relative;
    z-index: 1;
    animation: ek-fadeInUp 0.8s ease-out 0.3s both;
}

/* Hero Actions */
.ek-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: ek-fadeInUp 0.8s ease-out 0.4s both;
}

.ek-hero .btn-ek-accent {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
}

.ek-hero .btn-ek-outline {
    border-radius: 50px;
    padding: 12px 28px;
    background: var(--ek-white);
    box-shadow: var(--ek-shadow);
    border: 1px solid var(--ek-border);
    color: var(--ek-text);
}

.ek-hero .btn-ek-outline:hover {
    border-color: var(--ek-primary);
    color: var(--ek-primary);
    background: var(--ek-white);
}

/* Decorative Particles */
.ek-hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

.ek-hero-decoration-1 {
    top: 15%;
    left: 8%;
    width: 12px;
    height: 12px;
    background: var(--ek-primary);
    animation: ek-float-particle 6s ease-in-out infinite;
}

.ek-hero-decoration-2 {
    top: 25%;
    right: 12%;
    width: 8px;
    height: 8px;
    background: var(--ek-accent);
    animation: ek-float-particle 5s ease-in-out infinite 1s;
}

.ek-hero-decoration-3 {
    bottom: 30%;
    left: 15%;
    width: 6px;
    height: 6px;
    background: var(--ek-accent-light);
    animation: ek-float-particle 7s ease-in-out infinite 2s;
}

.ek-hero-decoration-4 {
    top: 60%;
    right: 8%;
    width: 10px;
    height: 10px;
    background: var(--ek-mint);
    animation: ek-float-particle 8s ease-in-out infinite 0.5s;
}

/* Dashboard Mockup */
.ek-hero-image-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 520px;
    border-radius: var(--ek-radius-lg);
    box-shadow: var(--ek-shadow-lg);
    overflow: hidden;
    background: var(--ek-white);
    animation: ek-float 6s ease-in-out infinite;
}

.ek-dashboard-mockup {
    background: var(--ek-white);
    padding: 1.25rem;
}

.ek-mockup-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--ek-border);
}

.ek-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.ek-mockup-dot.red { background: #ff5f57; }
.ek-mockup-dot.yellow { background: #ffbd2e; }
.ek-mockup-dot.green { background: #28c840; }

.ek-mockup-chart {
    height: 150px;
    background: linear-gradient(180deg, rgba(0, 96, 57, 0.1) 0%, rgba(0, 96, 57, 0.02) 100%);
    border-radius: var(--ek-radius);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ek-mockup-chart-line {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 96, 57, 0.3) 0%, transparent 100%);
    clip-path: polygon(0 80%, 15% 60%, 30% 70%, 45% 40%, 60% 50%, 75% 20%, 90% 35%, 100% 10%, 100% 100%, 0 100%);
}

.ek-mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.ek-mockup-stat {
    text-align: center;
    padding: 0.75rem;
    background: var(--ek-bg);
    border-radius: 8px;
}

.ek-mockup-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ek-primary);
    line-height: 1.2;
}

.ek-mockup-stat-label {
    font-size: 0.7rem;
    color: var(--ek-text-muted);
    margin-top: 2px;
}

/* Floating Cards */
.ek-hero-float {
    position: absolute;
    border-radius: var(--ek-radius);
    box-shadow: var(--ek-shadow-lg);
    overflow: hidden;
    background: var(--ek-white);
}

.ek-hero-float.card-1 {
    top: -2%;
    right: -4%;
    width: clamp(180px, 35%, 230px);
    animation: ek-float 5s ease-in-out infinite 0.5s;
}

.ek-hero-float.card-2 {
    bottom: 16%;
    left: -4%;
    width: clamp(210px, 42%, 270px);
    animation: ek-float 7s ease-in-out infinite 1s;
}

.ek-hero-float.card-3 {
    bottom: -2%;
    right: 14%;
    width: clamp(190px, 38%, 240px);
    animation: ek-float 6s ease-in-out infinite 1.5s;
}

.ek-float-card {
    padding: 1rem;
}

.ek-float-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.ek-float-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ek-float-card-icon.fc-primary {
    background: rgba(0, 96, 57, 0.1);
    color: var(--ek-primary);
}

.ek-float-card-icon.fc-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--ek-mint);
}

.ek-float-card-icon.fc-accent {
    background: rgba(37, 99, 235, 0.1);
    color: var(--ek-secondary);
}

.ek-float-card-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ek-text);
}

.ek-float-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.ek-float-card-value.fc-success { color: var(--ek-mint); }
.ek-float-card-value.fc-primary { color: var(--ek-primary); }

.ek-float-card-text {
    font-size: 0.8rem;
    color: var(--ek-text-muted);
    line-height: 1.4;
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .ek-hero h1 {
        font-size: 3rem;
    }
    .ek-hero-visuals {
        min-height: 400px;
    }
}

@media (max-width: 992px) {
    .ek-hero {
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    .ek-hero-row {
        flex-direction: column;
        gap: 3rem;
    }
    .ek-hero-content {
        text-align: center;
        flex-basis: auto;
    }
    .ek-hero h1 {
        font-size: 2.75rem;
    }
    .ek-hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .ek-hero-actions {
        justify-content: center;
    }
    .ek-hero-visuals {
        flex-basis: auto;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        min-height: 380px;
        aspect-ratio: auto;
    }
}

@media (max-width: 768px) {
    .ek-hero {
        padding: 2.5rem 1rem;
    }
    .ek-hero h1 {
        font-size: 2.25rem;
    }
    .ek-hero-visuals {
        display: none;
    }
}

/* ===== Page Hero ===== */
.ek-page-hero {
    background: linear-gradient(135deg, var(--ek-teal-dark) 0%, var(--ek-teal) 40%, var(--ek-mint) 100%);
    color: var(--ek-white);
    padding: 5rem 1.5rem 5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.ek-page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.ek-page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.ek-page-hero h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.ek-page-hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== Feature Icons ===== */
.ek-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--ek-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--ek-primary);
    font-size: 1.5rem;
    transition: var(--ek-transition);
}

.ek-card:hover .ek-icon-box {
    background: var(--ek-primary);
    color: var(--ek-white);
}

/* ===== Grid Helpers ===== */
.ek-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.ek-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ek-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .ek-grid-3, .ek-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .ek-page-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .ek-grid-2, .ek-grid-3, .ek-grid-4 {
        grid-template-columns: 1fr;
    }
    .ek-section {
        padding: 3rem 0;
    }
    .ek-section-alt {
        padding: 3rem 0;
    }
    .ek-page-hero {
        padding: 3rem 1rem;
    }
}

/* ===== WhatsApp Floating Button ===== */
.ek-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--ek-transition);
    text-decoration: none;
}

.ek-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* ===== Form Styles ===== */
.ek-form-group {
    margin-bottom: 1.5rem;
}

.ek-form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--ek-text);
}

/* ===== Validation ===== */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ===== Error Boundary ===== */
.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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;
}

/* ===== Utility ===== */
.text-primary-ek { color: var(--ek-primary) !important; }
.text-accent-ek { color: var(--ek-accent) !important; }
.bg-primary-ek { background-color: var(--ek-primary) !important; }
.bg-accent-ek { background-color: var(--ek-accent) !important; }