/* /Components/HeaderLogos.razor.rz.scp.css */
/* HeaderLogos.razor.css */
.header-logos[b-to0yymang1] {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 80px);
    display: flex;
    align-items: center;
    padding: 10px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.1); /* Nesten helt transparent */
    transition: all 0.3s ease;
    backdrop-filter: blur(1px); /* Minimal blur-effekt */
    border-bottom: none; /* Fjernet grenselinje helt */
}

.left-logo[b-to0yymang1] {
    height: 150px;
    width: auto;
    object-fit: contain;
    background-color: transparent;
    transition: all 0.3s ease;
}

.center-logo[b-to0yymang1] {
    height: 150px;
    margin: 0 auto;
    object-fit: contain;
    background-color: transparent;
    transition: all 0.3s ease;
}

/* Når man har rullet nedover, blir headeren praktisk talt usynlig */
.header-logos.scrolled[b-to0yymang1] {
    background-color: rgba(255, 255, 255, 0); /* Fullstendig transparent */
}

@media (max-width: 999px) {
    .header-logos[b-to0yymang1] {
        padding: 5px;
        background-color: rgba(255, 255, 255, 0.2); /* Litt synlig på mobile enheter for brukervennlighet */
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-qtbqhw2uv8] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-qtbqhw2uv8] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content[b-qtbqhw2uv8] {
    flex: 1;
    padding-top: 170px; /* Adjusted to accommodate the header logos */
}



.footer[b-qtbqhw2uv8] {
    background-color: #3a5f41;
    color: white;
    padding: 2rem 0;
}

.footer-content[b-qtbqhw2uv8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-info p[b-qtbqhw2uv8] {
    margin: 0.25rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links[b-qtbqhw2uv8] {
    display: flex;
    gap: 1.5rem;
}

.footer-links a[b-qtbqhw2uv8] {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover[b-qtbqhw2uv8] {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

@media (min-width: 768px) {
    .top-row[b-qtbqhw2uv8], article[b-qtbqhw2uv8] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .footer-content[b-qtbqhw2uv8] {
        flex-direction: row;
        justify-content: space-between;
        max-width: 950px;
        margin: 0 auto;
    }
}



#blazor-error-ui[b-qtbqhw2uv8] {
    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[b-qtbqhw2uv8] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/MenuToggle.razor.rz.scp.css */
.logo-container[b-9kgm58o3t7] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002; /* Høyere z-index enn menyen for å "skinne gjennom" */
}

.logo[b-9kgm58o3t7] {
    width: 60px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover[b-9kgm58o3t7] {
    transform: scale(1.1);
}

.sliding-menu[b-9kgm58o3t7] {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    background-color: rgba(220, 233, 227, 0.92); /* Litt mer transparent */
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1001; /* Lavere enn logo-container */
    max-height: 100vh; /* Full høyde */
    overflow-y: auto;
    border-radius: 0 0 0 10px;
    padding: 20px 0;
    backdrop-filter: blur(5px);
}

.sliding-menu.open[b-9kgm58o3t7] {
    right: 0;
}

.menu-overlay[b-9kgm58o3t7] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    animation: fadeIn-b-9kgm58o3t7 0.3s forwards;
}

@keyframes fadeIn-b-9kgm58o3t7 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.navbar-brand[b-9kgm58o3t7] {
    padding-top: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.site-title[b-9kgm58o3t7] {
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.site-title:hover[b-9kgm58o3t7] {
    transform: translateY(-2px);
}

.nav-link[b-9kgm58o3t7] {
    color: #444;
    transition: all 0.2s ease;
    border-radius: 5px;
}

.nav-link:hover[b-9kgm58o3t7] {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

button.nav-link[b-9kgm58o3t7] {
    background: none;
    border: none;
    text-align: left;
    width: 100%;
    padding: 0.5rem 1rem;
}

/* /Components/Shared/CookieConsent.razor.rz.scp.css */
.cookie-consent[b-hzurdhyuct] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 1000;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    /* Skjul det som standard */
    opacity: 0;
    visibility: hidden;
}

.cookie-consent.show[b-hzurdhyuct] {
    opacity: 1;
    visibility: visible;
}

.cookie-consent.hide[b-hzurdhyuct] {
    opacity: 0;
    visibility: hidden;
}

.cookie-content[b-hzurdhyuct] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-buttons[b-hzurdhyuct] {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .cookie-content[b-hzurdhyuct] {
        padding: 0.5rem 2rem;
    }
}
