/* /Components/FaqItemComponent.razor.rz.scp.css */
.faq-section[b-y5y90du6ea] {
    margin: 2rem 0;
    padding: 2rem;
}

.faq-container[b-y5y90du6ea] {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item .card[b-y5y90du6ea] {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.faq-item .card-header[b-y5y90du6ea] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0;
}

.faq-item .btn-link[b-y5y90du6ea] {
    color: #212529;
    text-decoration: none;
    padding: 1rem;
    border: none;
    background: none;
}

.faq-item .btn-link:hover[b-y5y90du6ea] {
    color: #0d6efd;
    background-color: #e9ecef;
}

.faq-item .card-body[b-y5y90du6ea] {
    padding: 1.5rem;
    background-color: #fff;
}

.faq-item .fa-chevron-down[b-y5y90du6ea] {
    transition: transform 0.3s ease;
}

.faq-item .btn-link[aria-expanded="true"] .fa-chevron-down[b-y5y90du6ea] {
    transform: rotate(180deg);
}
/* /Components/FooterComponent.razor.rz.scp.css */
.footer[b-1w77dbr4l2] {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 2rem 0 1rem 0;
    /*margin-top: 3rem;*/
    font-size: 1rem;
}

.footer-container[b-1w77dbr4l2] {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.footer-section[b-1w77dbr4l2] {
    min-width: 180px;
}

    .footer-section h5[b-1w77dbr4l2] {
        font-weight: 600;
        margin-bottom: 1rem;
        color: #2c3e50;
    }

    .footer-section ul[b-1w77dbr4l2] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-section ul.nav-content[b-1w77dbr4l2] {
        display: block;
    }

        .footer-section ul li[b-1w77dbr4l2] {
            margin-bottom: 0.5rem;
        }

        .footer-section ul.nav-content .nav-item[b-1w77dbr4l2] {
            display: block;
            margin-bottom: 0.5rem;
        }

            .footer-section ul li a[b-1w77dbr4l2] {
                color: #007bff;
                text-decoration: none;
                transition: color 0.2s;
            }

                .footer-section ul li a:hover[b-1w77dbr4l2] {
                    color: #0056b3;
                    text-decoration: underline;
                }

@media (max-width: 600px) {
    .footer-container[b-1w77dbr4l2] {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .footer-section[b-1w77dbr4l2] {
        min-width: 150px;
        flex: 0 1 auto;
        text-align: center;
    }
}
/* /Components/HeaderComponent.razor.rz.scp.css */
/* Minimal navigation */
nav[b-go012gj98f] {
    grid-area: nav;
    padding: 1rem 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.nav-content[b-go012gj98f] {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo[b-go012gj98f] {
    font-weight: 600;
    font-size: 1.2rem;
    color: #1a1a1a;
    text-decoration: none;
    position: absolute;
    left: 0;
}

/* Burger Menu Button - versteckt auf Desktop */
.menu-toggle[b-go012gj98f] {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #1a1a1a;
    position: absolute;
    right: 0;
}

/* Navigation Links - zentriert */
.nav-links[b-go012gj98f] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.nav-item[b-go012gj98f] {
    margin: 0;
}

.nav-item a[b-go012gj98f] {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item a:hover[b-go012gj98f] {
    color: #007bff;
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .nav-content[b-go012gj98f] {
        justify-content: space-between;
    }
    
    .logo[b-go012gj98f] {
        position: static;
    }
    
    .menu-toggle[b-go012gj98f] {
        display: block;
        position: fixed;
        z-index: 10002;
        right: 1rem;
        top: 1rem;
    }
    
    .nav-links[b-go012gj98f] {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 300px !important;
        height: 100vh !important;
        background: white !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 4rem 2rem 2rem 2rem !important;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
        transition: transform 0.3s ease !important;
        z-index: 10003 !important;
        gap: 1.5rem !important;
        display: flex !important;
        transform: translateX(100%) !important;
        pointer-events: none !important;
    }
    
    .nav-links.open[b-go012gj98f] {
        transform: translateX(0) !important;
        pointer-events: auto !important;
    }
    
    .nav-item[b-go012gj98f] {
        width: 100%;
    }
    
    .nav-item a[b-go012gj98f] {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        color: #1a1a1a;
    }
    
    .nav-item button[b-go012gj98f] {
        width: 100%;
        margin: 0.5rem 0;
    }
    

}

/* Tablet */
@media (max-width: 992px) and (min-width: 769px) {
    .nav-links[b-go012gj98f] {
        gap: 1rem;
    }
    
    .nav-item a[b-go012gj98f] {
        font-size: 0.9rem;
    }
}

/* Overlay für Mobile Menu */
@media (max-width: 768px) {
    .nav-overlay[b-go012gj98f] {
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100vw - 300px);
        height: 100vh;
        background: transparent;
        z-index: 10001;
        pointer-events: auto;
    }
}

/* /Components/HowItWorksComponent.razor.rz.scp.css */
/* Ensure HowItWorksComponent is visible */
.how-it-works-section[b-dni915dysb] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    display: block !important;
    visibility: visible !important;
    margin-top: 2rem;
    padding: 2rem 0;
}

.how-it-works-section .container[b-dni915dysb] {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-section .card[b-dni915dysb] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.howitworks-row[b-dni915dysb] {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.howitworks-col[b-dni915dysb] {
    flex: 1 1 0;
    min-width: 250px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media (max-width: 900px) {
    .howitworks-row[b-dni915dysb] {
        flex-direction: column;
        gap: 1.5rem;
    }
    .howitworks-col[b-dni915dysb] {
        max-width: 100%;
    }
}
/* /Components/SidebarComponent.razor.rz.scp.css */
/* Sidebar component styles */
.sidebar[b-p6y95sfr75] {
    padding: 1rem;
}

.sidebar ul[b-p6y95sfr75] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .nav-links[b-p6y95sfr75] {
    margin-bottom: 0.5rem;
}

.sidebar .nav-links a[b-p6y95sfr75] {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #333 !important;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    gap: 0.75rem;
}

.sidebar .nav-links a:hover[b-p6y95sfr75] {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff !important;
}

.sidebar .nav-links h1[b-p6y95sfr75] {
    margin: 0;
    font-size: 1.25rem;
    font-weight: normal;
}

.sidebar .nav-links i[b-p6y95sfr75] {
    font-size: 1.1rem;
    width: 1.5rem;
    text-align: center;
}

/* Mobile specific styles */
@media (max-width: 640px) {
    .sidebar[b-p6y95sfr75] {
        padding: 1.5rem 1rem;
    }
    
    .sidebar .nav-links a[b-p6y95sfr75] {
        padding: 1rem;
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .sidebar .nav-links h1[b-p6y95sfr75] {
        font-size: 1.1rem;
    }
    
    .sidebar .nav-links i[b-p6y95sfr75] {
        font-size: 1.2rem;
    }
}

/* Desktop styles */
@media (min-width: 641px) {
    .sidebar .nav-links a[b-p6y95sfr75] {
        margin-bottom: 0.25rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-v9e6o3qkuf] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-v9e6o3qkuf] {
    flex: 1;
}

.sidebar[b-v9e6o3qkuf] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-v9e6o3qkuf] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-v9e6o3qkuf]  a, .top-row[b-v9e6o3qkuf]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-v9e6o3qkuf]  a:hover, .top-row[b-v9e6o3qkuf]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-v9e6o3qkuf]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-v9e6o3qkuf] {
        justify-content: space-between;
    }

    .top-row[b-v9e6o3qkuf]  a, .top-row[b-v9e6o3qkuf]  .btn-link {
        margin-left: 0;
    }
}

/* Sidebar toggle button */
.sidebar-toggle[b-v9e6o3qkuf] {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 10001;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
    display: block;
}

.sidebar-toggle:hover[b-v9e6o3qkuf] {
    background: #0056b3;
}

/* Mobile sidebar styles */
@media (max-width: 640px) {
    .sidebar[b-v9e6o3qkuf] {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100vh;
        z-index: 10000;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .sidebar.open[b-v9e6o3qkuf] {
        left: 0;
    }
    
    .content[b-v9e6o3qkuf] {
        width: 100%;
        margin-left: 0;
    }
    
    .sidebar-overlay[b-v9e6o3qkuf] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: none;
    }
    
    .sidebar-overlay.show[b-v9e6o3qkuf] {
        display: block;
    }
}

/* Medium screen sizes - tablet/small desktop */
@media (min-width: 641px) and (max-width: 1199px) {
    .page[b-v9e6o3qkuf] {
        flex-direction: column;
    }

    .sidebar[b-v9e6o3qkuf] {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100vh;
        z-index: 10000;
        transition: left 0.3s ease;
        overflow-y: auto;
        background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%) !important;
    }
    
    .sidebar.open[b-v9e6o3qkuf] {
        left: 0;
    }
    
    .content[b-v9e6o3qkuf] {
        width: 100%;
        margin-left: 0;
        transition: margin-left 0.3s ease;
    }
    
    .page.sidebar-open .content[b-v9e6o3qkuf] {
        margin-left: 250px;
    }
    
    .sidebar-overlay[b-v9e6o3qkuf] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: none;
    }
    
    .sidebar-overlay.show[b-v9e6o3qkuf] {
        display: block;
    }

    .top-row[b-v9e6o3qkuf] {
        position: sticky;
        top: 0;
        z-index: 1;
        justify-content: space-between;
    }

    .top-row[b-v9e6o3qkuf]  a, .top-row[b-v9e6o3qkuf]  .btn-link {
        margin-left: 0;
    }
}

/* Large desktop screens */
@media (min-width: 1200px) {
    .page[b-v9e6o3qkuf] {
        flex-direction: row;
    }

    .sidebar[b-v9e6o3qkuf] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }
    
    .sidebar-toggle[b-v9e6o3qkuf] {
        display: none;
    }

    .top-row[b-v9e6o3qkuf] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-v9e6o3qkuf]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-v9e6o3qkuf], article[b-v9e6o3qkuf] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/AdminDashboardPage.razor.rz.scp.css */
.rounded-table[b-kow9055r3v] {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

    .rounded-table th[b-kow9055r3v], .rounded-table td[b-kow9055r3v] {
        padding: 10px;
        text-align: left;
        border: 1px solid #666;
    }

    .rounded-table th[b-kow9055r3v] {
        background-color: #a2d2df;
    }


.rounded-table th:first-child[b-kow9055r3v] {
    border-top-left-radius: 12px;
}
.rounded-table th:last-child[b-kow9055r3v] {
    border-top-right-radius: 12px;
}
.rounded-table tr:last-child td:first-child[b-kow9055r3v] {
    border-bottom-left-radius: 12px;
}
.rounded-table tr:last-child td:last-child[b-kow9055r3v] {
    border-bottom-right-radius: 12px;
}
/* /Pages/CreateJobPage.razor.rz.scp.css */
.content[b-nzlsyuobl6] {
    grid-area: content;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #e3f6fc 50%, #0482fb 100%);
    position: relative;
}
/* /Pages/Home.razor.rz.scp.css */
*[b-r4y8rb6wk7] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-r4y8rb6wk7] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #a2d2df;
}

/* Unique asymmetric grid layout */
.container[b-r4y8rb6wk7] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
        "nav nav"
        "hero content"
        "footer footer";
}



/* Hero section with unique typography */
.hero[b-r4y8rb6wk7] {
    grid-area: hero;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .hero h1[b-r4y8rb6wk7] {
        font-size: clamp(2.5rem, 5vw, 4rem);
        font-weight: 300;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

        .hero h1 strong[b-r4y8rb6wk7] {
            font-weight: 600;
            position: relative;
        }

            /* Subtle underline animation */
            .hero h1 strong[b-r4y8rb6wk7]::after {
                content: '';
                position: absolute;
                bottom: -4px;
                left: 0;
                width: 0;
                height: 2px;
                background: #1a1a1a;
                transition: width 1.5s ease-out 0.5s;
            }

            .hero h1 strong:hover[b-r4y8rb6wk7]::after {
                width: 100%;
            }

    .hero p[b-r4y8rb6wk7] {
        font-size: 1.1rem;
        color: #666;
        max-width: 400px;
        margin-bottom: 2rem;
    }

/* Content area with organic layout */
.content[b-r4y8rb6wk7] {
    grid-area: content;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #e3f6fc 50%, #0482fb 100%);
    position: relative;
}

    .content[b-r4y8rb6wk7]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f0f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

.features[b-r4y8rb6wk7] {
    position: relative;
    z-index: 1;
}

.feature[b-r4y8rb6wk7] {
    margin-bottom: 3rem;
    max-width: 450px;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

    /* Background images for each feature */
    .feature[b-r4y8rb6wk7]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center right;
        opacity: 0.25;
        z-index: -1;
        border-radius: 8px;
    }

    /* Specific background images for each feature */
    .feature.security[b-r4y8rb6wk7]::before {
        transform: scaleX(-1);
        background-position: center left;
        background-image: url('images/security-image.jpg');
        /* Fallback SVG if image not found */
    }

    .feature.learning[b-r4y8rb6wk7]::before {
        background-image: url('images/learning-image.jpg');
        /* Fallback SVG if image not found */
    }

    .feature.community[b-r4y8rb6wk7]::before {
        background-image: url('images/community-image.jpg');
        /* Fallback SVG if image not found */
    }

    .feature:nth-child(even)[b-r4y8rb6wk7] {
        margin-left: auto;
        text-align: right;
    }

        .feature:nth-child(even)[b-r4y8rb6wk7]::before {
            background-position: center left;
        }

    .feature h3[b-r4y8rb6wk7] {
        font-size: 1.4rem;
        font-weight: 500;
        margin-bottom: 0.8rem;
        color: #1a1a1a;
        position: relative;
        z-index: 1;
    }

    .feature p[b-r4y8rb6wk7] {
        color: #666;
        line-height: 1.7;
        position: relative;
        z-index: 1;
    }

/* Unique button styles */
.btn[b-r4y8rb6wk7] {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

    .btn[b-r4y8rb6wk7]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.1);
        transition: left 0.3s ease;
    }

    .btn:hover[b-r4y8rb6wk7]::before {
        left: 100%;
    }

    .btn:hover[b-r4y8rb6wk7] {
        transform: translateY(-1px);
    }

.btn-secondary[b-r4y8rb6wk7] {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e8e8e8;
}

    .btn-secondary:hover[b-r4y8rb6wk7] {
        background: #f8f9fa;
    }

.cta-buttons[b-r4y8rb6wk7] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.section-divider[b-r4y8rb6wk7]{
    border: none;
    border-top: 2px solid #e8e8e8;
    margin: 3rem 0 2rem 0;
    width: 100%
}
/* Image container with unique aspect ratio */
.image-container[b-r4y8rb6wk7] {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 4/3;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
}

    .image-container img[b-r4y8rb6wk7] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(20%) contrast(1.1);
    }

/* Footer */
footer[b-r4y8rb6wk7] {
    grid-area: footer;
    padding: 2rem;
    border-top: 1px solid #e8e8e8;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
    .container[b-r4y8rb6wk7] {
        grid-template-columns: 1fr;
        grid-template-areas:
            "nav"
            "hero"
            "content"
            "footer";
    }

    .hero[b-r4y8rb6wk7], .content[b-r4y8rb6wk7] {
        padding: 2rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-content[b-r4y8rb6wk7] {
        padding: 0 1rem;
    }

    .nav-links[b-r4y8rb6wk7] {
        display: none;
    }

    .feature[b-r4y8rb6wk7] {
        width: 100%;
        max-width: 100%;
        margin: 0 0 1.5rem 0;
        padding: 1rem;
        box-sizing: border-box;
    }

    .feature:nth-child(even)[b-r4y8rb6wk7] {
        margin-left: 0;
        text-align: left;
    }

    .cta-buttons[b-r4y8rb6wk7] {
        flex-direction: column;
        width: 100%;
    }
    
    .btn[b-r4y8rb6wk7] {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero[b-r4y8rb6wk7], .content[b-r4y8rb6wk7] {
        padding: 1.5rem 0.75rem;
    }
    
    .feature[b-r4y8rb6wk7] {
        padding: 0.75rem;
        margin: 0 0 1rem 0;
    }
    
    .feature h3[b-r4y8rb6wk7] {
        font-size: 1.2rem;
    }
    
    .feature p[b-r4y8rb6wk7] {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn[b-r4y8rb6wk7] {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Subtle animations on scroll (CSS-only) */
.feature[b-r4y8rb6wk7] {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp-b-r4y8rb6wk7 0.8s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s);
}

    .feature:nth-child(1)[b-r4y8rb6wk7] {
        --delay: 1;
    }

    .feature:nth-child(2)[b-r4y8rb6wk7] {
        --delay: 2;
    }

    .feature:nth-child(3)[b-r4y8rb6wk7] {
        --delay: 3;
    }

@keyframes fadeInUp-b-r4y8rb6wk7 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/JobSearchPage.razor.rz.scp.css */
/* Mobile-First Approach - Funktioniert garantiert auf allen Geräten */
body[b-x2w15qcv7x] {
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Filter Container - Immer sichtbar */
.filter-container[b-x2w15qcv7x] {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px auto !important;
    padding: 15px !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    box-sizing: border-box !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Filter Row */
.filter-row[b-x2w15qcv7x] {
    display: block !important;
    width: 100% !important;
}

/* Filter Items - Immer sichtbar */
.filter-item[b-x2w15qcv7x] {
    width: 100% !important;
    margin-bottom: 15px !important;
    display: block !important;
    visibility: visible !important;
}

.filter-item label[b-x2w15qcv7x] {
    display: block !important;
    margin-bottom: 5px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    color: #333 !important;
}

/* Input und Select Felder - Immer sichtbar */
.filter-item select[b-x2w15qcv7x],
.filter-item input[b-x2w15qcv7x] {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px !important;
    font-size: 16px !important;
    border: 2px solid #ddd !important;
    border-radius: 6px !important;
    background: #fff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 44px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.filter-item select:focus[b-x2w15qcv7x],
.filter-item input:focus[b-x2w15qcv7x] {
    border-color: #007bff !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25) !important;
}

/* Such-Button - Immer sichtbar */
.search-button[b-x2w15qcv7x] {
    display: block !important;
    width: 100% !important;
    margin: 20px auto 0 auto !important;
    padding: 15px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    background: #007bff !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 50px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    transition: all 0.2s ease !important;
}

.search-button:hover[b-x2w15qcv7x] {
    background: #0056b3 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

.search-button:active[b-x2w15qcv7x] {
    transform: translateY(0) !important;
}

/* Text Center Container */
.text-center[b-x2w15qcv7x] {
    text-align: center !important;
}

/* Job Cards */
.job-card[b-x2w15qcv7x] {
    transition: all 0.3s ease;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    background: white;
    height: 100%;
}

.job-card:hover[b-x2w15qcv7x] {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-img-container[b-x2w15qcv7x] {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(23deg, #e3f6fc 13%, #0482fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-container img[b-x2w15qcv7x] {
    width: 125px;
    height: 125px;
    object-fit: cover;
    border-radius: 12px;
    background: white;
    padding: 8px;
}

.card-body[b-x2w15qcv7x] {
    padding: 1.5rem;
}

.job-title[b-x2w15qcv7x] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.job-category[b-x2w15qcv7x] {
    font-size: 0.9rem;
    color: #6e6e73;
    margin-bottom: 1rem;
}

.job-date[b-x2w15qcv7x] {
    font-size: 0.85rem;
    color: #8e8e93;
    margin-bottom: 1rem;
}

.job-divider[b-x2w15qcv7x] {
    border-top: 1px solid #e5e5e7;
    margin: 2rem 0;
}

/* Responsive Anpassungen - NUR Verbesserungen, keine Versteckungen */
@media (min-width: 576px) {
    .filter-container[b-x2w15qcv7x] {
        max-width: 500px !important;
        padding: 20px !important;
    }
    
    .filter-item[b-x2w15qcv7x] {
        margin-bottom: 18px !important;
    }
    
    /* Button zentriert unter den Feldern mit Abstand */
    .search-button[b-x2w15qcv7x] {
        max-width: 200px !important;
        margin: 25px auto 0 auto !important;
    }
}

@media (min-width: 768px) {
    .filter-container[b-x2w15qcv7x] {
        max-width: 600px !important;
        padding: 25px !important;
    }
    
    /* Button zentriert mit mehr Abstand */
    .search-button[b-x2w15qcv7x] {
        max-width: 220px !important;
        margin: 30px auto 0 auto !important;
    }
}

@media (min-width: 992px) {
    .filter-container[b-x2w15qcv7x] {
        max-width: 700px !important;
    }
    
    .filter-row[b-x2w15qcv7x] {
        display: flex !important;
        gap: 15px !important;
        align-items: end !important;
        flex-wrap: wrap !important;
    }
    
    .filter-item[b-x2w15qcv7x] {
        flex: 1 !important;
        margin-bottom: 0 !important;
        min-width: 200px !important;
    }
    
    /* Button zentriert unter den Feldern bei großen Bildschirmen */
    .search-button[b-x2w15qcv7x] {
        width: 100% !important;
        max-width: 250px !important;
        margin: 25px auto 0 auto !important;
        flex-basis: 100% !important;
        order: 10 !important;
    }
}

/* Spezielle Regeln für sehr kleine Bildschirme */
@media (max-width: 320px) {
    .filter-container[b-x2w15qcv7x] {
        margin: 5px !important;
        padding: 10px !important;
    }
    
    .filter-item select[b-x2w15qcv7x],
    .filter-item input[b-x2w15qcv7x] {
        padding: 10px !important;
        font-size: 14px !important;
    }
    
    .search-button[b-x2w15qcv7x] {
        padding: 12px !important;
        font-size: 16px !important;
    }
}

/* Überschreibt alle anderen CSS-Regeln */
.filter-container[b-x2w15qcv7x],
.filter-row[b-x2w15qcv7x],
.filter-item[b-x2w15qcv7x],
.filter-item select[b-x2w15qcv7x],
.filter-item input[b-x2w15qcv7x],
.search-button[b-x2w15qcv7x] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* /Pages/ProfilPage.razor.rz.scp.css */

.content[b-t45cxxpjya] {
    grid-area: content;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #e3f6fc 36%, #0482fb 100%);
    position: relative;
}
/* /Pages/TipsManagementPage.razor.rz.scp.css */
.tip-card[b-097m0tfxks] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* /Pages/TipsPage.razor.rz.scp.css */
.tips-bg[b-m6a4nuq2kk] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: center;
}

.tips-bg h3[b-m6a4nuq2kk] {
    color: #1d1d1f;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.container[b-m6a4nuq2kk] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-item[b-m6a4nuq2kk] {
    display: inline-block;
    background: linear-gradient(135deg, #007aff, #5856d6);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.nav-item:hover[b-m6a4nuq2kk] {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
    color: white;
    text-decoration: none;
}

.tip-card[b-m6a4nuq2kk] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover[b-m6a4nuq2kk] {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tip-card h4[b-m6a4nuq2kk] {
    color: #1d1d1f;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.3;
}

.tip-card p[b-m6a4nuq2kk] {
    color: #86868b;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tips-bg[b-m6a4nuq2kk] {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .tips-bg h3[b-m6a4nuq2kk] {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .nav-item[b-m6a4nuq2kk] {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .tip-card[b-m6a4nuq2kk] {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .tip-card h4[b-m6a4nuq2kk] {
        font-size: 1.1rem;
    }
    
    .tip-card p[b-m6a4nuq2kk] {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .tips-bg[b-m6a4nuq2kk] {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .tips-bg h3[b-m6a4nuq2kk] {
        font-size: 1.1rem;
    }
    
    .tip-card[b-m6a4nuq2kk] {
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .nav-item[b-m6a4nuq2kk] {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}
