/* ============================================================
   Öcotáj — globális alap stílusok
   ============================================================ */

:root {
    --ocotaj-green-dark:  #2d5a27;
    --ocotaj-green-mid:   #3d7a35;
    --ocotaj-green-light: #4e9e44;
    --ocotaj-green-pale:  #e8f5e2;
    --ocotaj-white:       #ffffff;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.ocotaj-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.ocotaj-main {
    flex: 1;
    background-color: #f8faf7;
}

.ocotaj-main .content {
    padding-top: 1.25rem;
}

/* ============================================================
   HEADER
   ============================================================ */

.ocotaj-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, var(--ocotaj-green-dark) 0%, var(--ocotaj-green-mid) 100%);
    padding: 0 1.25rem;
    height: 3.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    gap: 1rem;
}

/* Brand */
.header-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-leaf {
    font-size: 1.3rem;
    line-height: 1;
}

.brand-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ============================================================
   NAV
   ============================================================ */

.ocotaj-nav {
    display: flex;
    align-items: center;
    position: relative;
}

/* --- Hamburger gomb --- */
.nav-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;
    cursor: pointer;
    padding: 0.35rem 0.4rem;
}

.nav-toggler span {
    display: block;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 2px;
}

/* --- Link lista --- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

/* --- Nav link alap stílus --- */
.ocotaj-header .nav-link {
    color: rgba(255,255,255,0.88) !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 5px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    border: none;
    background: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    line-height: 1.4;
    font-family: inherit;
}

.ocotaj-header .nav-link:hover {
    background-color: rgba(255,255,255,0.15) !important;
    color: #fff !important;
}

.ocotaj-header .nav-link.active {
    background-color: rgba(255,255,255,0.25) !important;
    color: #fff !important;
    font-weight: 600;
}

/* Felhasználónév elválasztó */
.nav-link-user {
    border-left: 1px solid rgba(255,255,255,0.25) !important;
    border-radius: 0 !important;
    margin-left: 0.25rem;
    padding-left: 0.9rem !important;
}

/* Logout form */
.nav-form {
    display: inline-flex;
}

/* ============================================================
   MOBIL NAVIGÁCIÓ — 768px alatt
   ============================================================ */

@media (max-width: 768px) {

    .brand-text {
        font-size: 0.8rem;
    }

    .nav-toggler {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: absolute;
        top: calc(100% + 0.6rem);
        right: 0;
        min-width: 210px;
        background: #2d5a27;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 8px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.35);
        z-index: 2000;
        padding: 0.4rem;
    }

    .nav-links.nav-open {
        display: flex;
    }

    .ocotaj-header .nav-link {
        width: 100%;
        padding: 0.65rem 0.9rem !important;
        border-radius: 5px;
        font-size: 0.9rem;
    }

    .nav-link-user {
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.2) !important;
        border-radius: 0 !important;
        margin-left: 0 !important;
        margin-top: 0.25rem;
    }

    .nav-form {
        display: flex;
        width: 100%;
    }

    .nav-form .nav-link {
        width: 100%;
        text-align: left;
    }
}

/* ============================================================
   HIBAÜZENET SÁV
   ============================================================ */

#blazor-error-ui {
    color-scheme: light only;
    background: #fff3cd;
    border-top: 2px solid #ffc107;
    bottom: 0;
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 9999;
    font-size: 0.9rem;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* ============================================================
   BOOTSTRAP FELÜLÍRÁSOK — zöld brand
   ============================================================ */

a {
    color: var(--ocotaj-green-mid);
}
a:hover {
    color: var(--ocotaj-green-dark);
}

.btn-primary {
    background-color: var(--ocotaj-green-mid) !important;
    border-color: var(--ocotaj-green-dark) !important;
    color: #fff !important;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--ocotaj-green-dark) !important;
    border-color: var(--ocotaj-green-dark) !important;
}

.btn-success {
    background-color: var(--ocotaj-green-light) !important;
    border-color: var(--ocotaj-green-mid) !important;
    color: #fff !important;
}
.btn-success:hover {
    background-color: var(--ocotaj-green-mid) !important;
}

.badge.bg-success {
    background-color: var(--ocotaj-green-mid) !important;
}

.btn:focus, .btn:active:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #4e9e4488;
}

/* ============================================================
   EGYÉB GLOBÁLIS STÍLUSOK
   ============================================================ */

h1:focus { outline: none; }

.valid.modified:not([type=checkbox]) { outline: 1px solid #26b050; }
.invalid { outline: 1px solid #e50000; }
.validation-message { color: #e50000; }
