/* _content/Website_BOMOKft/Components/Comps/AboutSection.razor.rz.scp.css */
.about-section[b-6z8qutgkwo] {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.about-section[b-6z8qutgkwo]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D32F2F, transparent);
}

.container[b-6z8qutgkwo] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header[b-6z8qutgkwo] {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title[b-6z8qutgkwo] {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.section-divider[b-6z8qutgkwo] {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D32F2F, #FFD700);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content[b-6z8qutgkwo] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text[b-6z8qutgkwo] {
    animation: fadeInLeft-b-6z8qutgkwo 1s ease-out;
}

.about-card[b-6z8qutgkwo] {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 5px solid #D32F2F;
}

.about-card h3[b-6z8qutgkwo] {
    font-size: 1.8rem;
    color: #D32F2F;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-card p[b-6z8qutgkwo] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
}

.values-grid[b-6z8qutgkwo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.value-item[b-6z8qutgkwo] {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover[b-6z8qutgkwo] {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.value-icon[b-6z8qutgkwo] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-item h4[b-6z8qutgkwo] {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p[b-6z8qutgkwo] {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-image[b-6z8qutgkwo] {
    position: relative;
    animation: fadeInRight-b-6z8qutgkwo 1s ease-out;
}

.team-image[b-6z8qutgkwo] {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.image-overlay[b-6z8qutgkwo] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    border-radius: 0 0 15px 15px;
}

.image-text[b-6z8qutgkwo] {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.stats-row[b-6z8qutgkwo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item[b-6z8qutgkwo] {
    text-align: center;
    padding: 1rem;
}

.stat-number[b-6z8qutgkwo] {
    font-size: 3rem;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 0.5rem;
}

.stat-label[b-6z8qutgkwo] {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

@keyframes fadeInLeft-b-6z8qutgkwo {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight-b-6z8qutgkwo {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-section[b-6z8qutgkwo] {
        padding: 3rem 0;
    }
    
    .section-title[b-6z8qutgkwo] {
        font-size: 2.5rem;
    }
    
    .about-content[b-6z8qutgkwo] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card[b-6z8qutgkwo] {
        padding: 2rem;
    }
    
    .values-grid[b-6z8qutgkwo] {
        grid-template-columns: 1fr;
    }
    
    .stats-row[b-6z8qutgkwo] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 2rem;
    }
    
    .stat-number[b-6z8qutgkwo] {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container[b-6z8qutgkwo] {
        padding: 0 1rem;
    }
    
    .section-title[b-6z8qutgkwo] {
        font-size: 2rem;
    }
    
    .about-card[b-6z8qutgkwo] {
        padding: 1.5rem;
    }
    
    .stats-row[b-6z8qutgkwo] {
        grid-template-columns: 1fr;
    }
}
/* _content/Website_BOMOKft/Components/Comps/ContactSection.razor.rz.scp.css */
.contact-section[b-0dtsfml8sx] {
    background-color: #f8f9fa;
}

.contact-hero[b-0dtsfml8sx] {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('/images/contact-hero.jpg') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-overlay[b-0dtsfml8sx] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header[b-0dtsfml8sx] {
    text-align: center;
    color: white;
    animation: fadeInUp-b-0dtsfml8sx 1s ease-out;
}

.contact-title[b-0dtsfml8sx] {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact-subtitle[b-0dtsfml8sx] {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
}

.contact-content[b-0dtsfml8sx] {
    padding: 5rem 0;
}

.container[b-0dtsfml8sx] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-grid[b-0dtsfml8sx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3[b-0dtsfml8sx], .contact-form-container h3[b-0dtsfml8sx] {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-cards[b-0dtsfml8sx] {
    display: grid;
    gap: 1.5rem;
}

.contact-card[b-0dtsfml8sx] {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #D32F2F;
}

.contact-card:hover[b-0dtsfml8sx] {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon[b-0dtsfml8sx] {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4[b-0dtsfml8sx] {
    font-size: 1.2rem;
    color: #D32F2F;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p[b-0dtsfml8sx] {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-details a[b-0dtsfml8sx] {
    color: #D32F2F;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover[b-0dtsfml8sx] {
    text-decoration: underline;
}

.contact-form-container[b-0dtsfml8sx] {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 70%;
    align-self: center;
    margin: auto 0;
}

.contact-form[b-0dtsfml8sx] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row[b-0dtsfml8sx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group[b-0dtsfml8sx] {
    display: flex;
    flex-direction: column;
}

.form-group input[b-0dtsfml8sx],
.form-group select[b-0dtsfml8sx],
.form-group textarea[b-0dtsfml8sx] {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus[b-0dtsfml8sx],
.form-group select:focus[b-0dtsfml8sx],
.form-group textarea:focus[b-0dtsfml8sx] {
    outline: none;
    border-color: #D32F2F;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.form-group textarea[b-0dtsfml8sx] {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group[b-0dtsfml8sx] {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"][b-0dtsfml8sx] {
    width: auto;
    margin: 0;
}

.checkbox-group label[b-0dtsfml8sx] {
    font-size: 0.9rem;
    color: #666;
}

.checkbox-group a[b-0dtsfml8sx] {
    color: #D32F2F;
    text-decoration: none;
}

.checkbox-group a:hover[b-0dtsfml8sx] {
    text-decoration: underline;
}

.submit-btn[b-0dtsfml8sx] {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn:hover[b-0dtsfml8sx] {
    background: linear-gradient(135deg, #B71C1C, #8C0000);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
}

.map-section[b-0dtsfml8sx] {
    margin-bottom: 4rem;
    text-align: center;
}

.map-section h3[b-0dtsfml8sx] {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.map-container[b-0dtsfml8sx] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-placeholder[b-0dtsfml8sx] {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #666;
}

.map-icon[b-0dtsfml8sx] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder p[b-0dtsfml8sx] {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.map-link[b-0dtsfml8sx] {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #D32F2F;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link:hover[b-0dtsfml8sx] {
    background: #B71C1C;
    transform: translateY(-2px);
}

.social-section[b-0dtsfml8sx] {
    text-align: center;
}

.social-section h3[b-0dtsfml8sx] {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.social-links[b-0dtsfml8sx] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link[b-0dtsfml8sx] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-link:hover[b-0dtsfml8sx] {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover[b-0dtsfml8sx] {
    background: #3b5998;
    color: white;
}

.social-link.instagram:hover[b-0dtsfml8sx] {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.google:hover[b-0dtsfml8sx] {
    background: #4285f4;
    color: white;
}

.social-icon[b-0dtsfml8sx] {
    font-size: 1.2rem;
}

@keyframes fadeInUp-b-0dtsfml8sx {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-hero[b-0dtsfml8sx] {
        height: 30vh;
    }
    
    .contact-title[b-0dtsfml8sx] {
        font-size: 2.5rem;
    }
    
    .contact-subtitle[b-0dtsfml8sx] {
        font-size: 1.1rem;
    }
    
    .contact-content[b-0dtsfml8sx] {
        padding: 3rem 0;
    }
    
    .contact-grid[b-0dtsfml8sx] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row[b-0dtsfml8sx] {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container[b-0dtsfml8sx] {
        padding: 2rem;
        height: 100%;
    }
    
    .social-links[b-0dtsfml8sx] {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link[b-0dtsfml8sx] {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container[b-0dtsfml8sx] {
        padding: 0 1rem;
    }
    
    .contact-title[b-0dtsfml8sx] {
        font-size: 2rem;
    }
    
    .contact-card[b-0dtsfml8sx] {
        padding: 1.5rem;
    }
    
    .contact-form-container[b-0dtsfml8sx] {
        padding: 1.5rem;
    }
    
    .contact-info h3[b-0dtsfml8sx],
    .contact-form-container h3[b-0dtsfml8sx],
    .map-section h3[b-0dtsfml8sx],
    .social-section h3[b-0dtsfml8sx] {
        font-size: 1.8rem;
    }
}
/* _content/Website_BOMOKft/Components/Comps/FoodTruckSection.razor.rz.scp.css */
.foodtruck-section[b-vjavkwa1ew] {
    background-color: #f8f9fa;
}

.foodtruck-hero[b-vjavkwa1ew] {
    height: 50vh;
    background: linear-gradient(rgba(211, 47, 47, 0.8), rgba(183, 28, 28, 0.8)),
                url('/images/foodtruck-hero.jpg') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foodtruck-overlay[b-vjavkwa1ew] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foodtruck-content[b-vjavkwa1ew] {
    text-align: center;
    color: white;
    animation: fadeInUp-b-vjavkwa1ew 1s ease-out;
}

.foodtruck-title[b-vjavkwa1ew] {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.foodtruck-subtitle[b-vjavkwa1ew] {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

.foodtruck-details[b-vjavkwa1ew] {
    padding: 5rem 0;
}

.container[b-vjavkwa1ew] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section[b-vjavkwa1ew] {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-content h3[b-vjavkwa1ew] {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-content p[b-vjavkwa1ew] {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid[b-vjavkwa1ew] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-card[b-vjavkwa1ew] {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #D32F2F;
}

.service-card:hover[b-vjavkwa1ew] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon[b-vjavkwa1ew] {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h4[b-vjavkwa1ew] {
    font-size: 1.5rem;
    color: #D32F2F;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p[b-vjavkwa1ew] {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features[b-vjavkwa1ew] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li[b-vjavkwa1ew] {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li[b-vjavkwa1ew]:before {
    content: "✓";
    color: #D32F2F;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-features li:last-child[b-vjavkwa1ew] {
    border-bottom: none;
}

.foodtruck-features[b-vjavkwa1ew] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.features-content h3[b-vjavkwa1ew] {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.features-grid[b-vjavkwa1ew] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item[b-vjavkwa1ew] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover[b-vjavkwa1ew] {
    transform: translateX(10px);
}

.feature-item .feature-icon[b-vjavkwa1ew] {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h5[b-vjavkwa1ew] {
    font-size: 1.2rem;
    color: #333;
    /*margin-bottom: 0.5rem;*/
    font-weight: 600;
}

.feature-text p[b-vjavkwa1ew] {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.foodtruck-image[b-vjavkwa1ew] {
    animation: fadeInRight-b-vjavkwa1ew 1s ease-out;
}

.truck-image[b-vjavkwa1ew] {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.booking-section[b-vjavkwa1ew] {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: white;
    padding: 4rem 3rem;
    border-radius: 15px;
    text-align: center;
}

.booking-content h3[b-vjavkwa1ew] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.booking-content p[b-vjavkwa1ew] {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.booking-info[b-vjavkwa1ew] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-item[b-vjavkwa1ew] {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.btn[b-vjavkwa1ew] {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary[b-vjavkwa1ew] {
    background-color: white;
    color: #D32F2F;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover[b-vjavkwa1ew] {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

@keyframes fadeInUp-b-vjavkwa1ew {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight-b-vjavkwa1ew {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .foodtruck-hero[b-vjavkwa1ew] {
        height: 40vh;
    }
    
    .foodtruck-title[b-vjavkwa1ew] {
        font-size: 2.5rem;
    }
    
    .foodtruck-subtitle[b-vjavkwa1ew] {
        font-size: 1.1rem;
    }
    
    .foodtruck-details[b-vjavkwa1ew] {
        padding: 3rem 0;
    }
    
    .services-grid[b-vjavkwa1ew] {
        grid-template-columns: 1fr;
    }
    
    .foodtruck-features[b-vjavkwa1ew] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid[b-vjavkwa1ew] {
        gap: 1rem;
    }
    
    .feature-item[b-vjavkwa1ew] {
        padding: 1rem;
    }
    
    .booking-section[b-vjavkwa1ew] {
        padding: 3rem 2rem;
    }
    
    .booking-info[b-vjavkwa1ew] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container[b-vjavkwa1ew] {
        padding: 0 1rem;
    }
    
    .foodtruck-title[b-vjavkwa1ew] {
        font-size: 2rem;
    }
    
    .intro-content h3[b-vjavkwa1ew] {
        font-size: 2rem;
    }
    
    .service-card[b-vjavkwa1ew] {
        padding: 2rem;
    }
    
    .booking-section[b-vjavkwa1ew] {
        padding: 2rem 1rem;
    }
    
    .booking-content h3[b-vjavkwa1ew] {
        font-size: 2rem;
    }
}
/* _content/Website_BOMOKft/Components/Comps/FooterSection.razor.rz.scp.css */
.footer[b-wiv2i8ubss] {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
    color: white;
    margin-top: 5rem;
}

.footer-content[b-wiv2i8ubss] {
    padding: 4rem 0 2rem 0;
}

.container[b-wiv2i8ubss] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid[b-wiv2i8ubss] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h4[b-wiv2i8ubss] {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FFD700;
    position: relative;
}

.footer-section h4[b-wiv2i8ubss]:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 2px;
    background: #D32F2F;
}

.footer-section p[b-wiv2i8ubss] {
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.footer-social[b-wiv2i8ubss] {
    display: flex;
    gap: 1rem;
}

.social-icon[b-wiv2i8ubss] {
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover[b-wiv2i8ubss] {
    background: #D32F2F;
    transform: translateY(-3px);
}

.footer-links[b-wiv2i8ubss],
.footer-contact[b-wiv2i8ubss],
.footer-hours[b-wiv2i8ubss] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-wiv2i8ubss],
.footer-contact li[b-wiv2i8ubss],
.footer-hours li[b-wiv2i8ubss] {
    margin-bottom: 0.8rem;
    color: #bdc3c7;
}

.footer-links a[b-wiv2i8ubss] {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover[b-wiv2i8ubss] {
    color: #FFD700;
}

.footer-contact a[b-wiv2i8ubss] {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover[b-wiv2i8ubss] {
    color: #FFD700;
}

.footer-bottom[b-wiv2i8ubss] {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content[b-wiv2i8ubss] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p[b-wiv2i8ubss] {
    margin: 0;
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-legal[b-wiv2i8ubss] {
    display: flex;
    gap: 2rem;
}

.footer-legal a[b-wiv2i8ubss] {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover[b-wiv2i8ubss] {
    color: #FFD700;
}

@media (max-width: 768px) {
    .footer-grid[b-wiv2i8ubss] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content[b-wiv2i8ubss] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal[b-wiv2i8ubss] {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container[b-wiv2i8ubss] {
        padding: 0 1rem;
    }
    
    .footer-content[b-wiv2i8ubss] {
        padding: 3rem 0 1rem 0;
    }
    
    .footer-social[b-wiv2i8ubss] {
        justify-content: center;
    }
    
    .footer-legal[b-wiv2i8ubss] {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* _content/Website_BOMOKft/Components/Comps/HeroSection.razor.rz.scp.css */
.hero-section[b-wqo383omxt] {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/images/restaurant-hero.jpg') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay[b-wqo383omxt] {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-content[b-wqo383omxt] {
    max-width: 800px;
    animation: fadeInUp-b-wqo383omxt 1s ease-out;
}

.hero-logo[b-wqo383omxt] {
    margin-bottom: 2rem;
}

.company-name[b-wqo383omxt] {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.1em;
}

.company-tagline[b-wqo383omxt] {
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
    font-style: italic;
    opacity: 0.9;
}

.hero-text[b-wqo383omxt] {
    margin-top: 2rem;
}

.hero-title[b-wqo383omxt] {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-description[b-wqo383omxt] {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons[b-wqo383omxt] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn[b-wqo383omxt] {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary[b-wqo383omxt] {
    background-color: #D32F2F;
    color: white;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover[b-wqo383omxt] {
    background-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.5);
}

.btn-secondary[b-wqo383omxt] {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover[b-wqo383omxt] {
    background-color: white;
    color: #333;
    transform: translateY(-2px);
}

.hero-scroll-indicator[b-wqo383omxt] {
    position: absolute;
    bottom: 2rem;
    animation: bounce-b-wqo383omxt 2s infinite;
}

.scroll-text[b-wqo383omxt] {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.scroll-arrow[b-wqo383omxt] {
    font-size: 1.5rem;
    animation: bounceArrow-b-wqo383omxt 1.5s ease-in-out infinite;
}

@keyframes fadeInUp-b-wqo383omxt {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce-b-wqo383omxt {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounceArrow-b-wqo383omxt {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

@media (max-width: 768px) {
    .company-name[b-wqo383omxt] {
        font-size: 3rem;
    }
    
    .hero-title[b-wqo383omxt] {
        font-size: 2rem;
    }
    
    .hero-description[b-wqo383omxt] {
        font-size: 1.1rem;
    }
    
    .hero-buttons[b-wqo383omxt] {
        flex-direction: column;
        align-items: center;
    }
    
    .btn[b-wqo383omxt] {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .company-name[b-wqo383omxt] {
        font-size: 2.5rem;
    }
    
    .hero-title[b-wqo383omxt] {
        font-size: 1.8rem;
    }
}
/* _content/Website_BOMOKft/Components/Comps/MenuSection.razor.rz.scp.css */
.menu-section[b-r0kp5l8ghb] {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container[b-r0kp5l8ghb] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header[b-r0kp5l8ghb] {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title[b-r0kp5l8ghb] {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle[b-r0kp5l8ghb] {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.section-divider[b-r0kp5l8ghb] {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D32F2F, #FFD700);
    margin: 0 auto;
    border-radius: 2px;
}

.menu-categories[b-r0kp5l8ghb] {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.category-tabs[b-r0kp5l8ghb] {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs[b-r0kp5l8ghb]::-webkit-scrollbar {
    display: none;
}

.tab-btn[b-r0kp5l8ghb] {
    padding: 1.5rem 2rem;
    border: none;
    background: transparent;
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover[b-r0kp5l8ghb] {
    color: #D32F2F;
    background: rgba(211, 47, 47, 0.05);
}

.tab-btn.active[b-r0kp5l8ghb] {
    color: #D32F2F;
    background: white;
    border-bottom-color: #D32F2F;
}

.menu-content[b-r0kp5l8ghb] {
    padding: 3rem;
}

.menu-category[b-r0kp5l8ghb] {
    display: none;
}

.menu-category.active[b-r0kp5l8ghb] {
    display: block;
    animation: fadeInUp-b-r0kp5l8ghb 0.5s ease-out;
}

.menu-grid[b-r0kp5l8ghb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item[b-r0kp5l8ghb] {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.menu-item:hover[b-r0kp5l8ghb] {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.menu-item-image[b-r0kp5l8ghb] {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.item-image[b-r0kp5l8ghb] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .item-image[b-r0kp5l8ghb] {
    transform: scale(1.05);
}

.menu-item-info[b-r0kp5l8ghb] {
    padding: 1.5rem;
}

.item-name[b-r0kp5l8ghb] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.item-description[b-r0kp5l8ghb] {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.item-price[b-r0kp5l8ghb] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #D32F2F;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-note[b-r0kp5l8ghb] {
    background: rgba(211, 47, 47, 0.1);
    border: 1px solid rgba(211, 47, 47, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.menu-note p[b-r0kp5l8ghb] {
    margin: 0;
    color: #D32F2F;
    font-size: 0.95rem;
}

@keyframes fadeInUp-b-r0kp5l8ghb {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Interactive JavaScript functionality */
@media (max-width: 768px) {
    .menu-section[b-r0kp5l8ghb] {
        padding: 3rem 0;
    }
    
    .section-title[b-r0kp5l8ghb] {
        font-size: 2.5rem;
    }
    
    .category-tabs[b-r0kp5l8ghb] {
        flex-wrap: wrap;
    }
    
    .tab-btn[b-r0kp5l8ghb] {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .menu-content[b-r0kp5l8ghb] {
        padding: 2rem;
    }
    
    .menu-grid[b-r0kp5l8ghb] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .menu-item-info[b-r0kp5l8ghb] {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container[b-r0kp5l8ghb] {
        padding: 0 1rem;
    }
    
    .section-title[b-r0kp5l8ghb] {
        font-size: 2rem;
    }
    
    .menu-content[b-r0kp5l8ghb] {
        padding: 1rem;
    }
    
    .tab-btn[b-r0kp5l8ghb] {
        padding: 0.8rem 1rem;
    }
}
/* _content/Website_BOMOKft/Components/Comps/RestaurantSection.razor.rz.scp.css */
.restaurant-section[b-mdqn6gtbeo] {
    background-color: #fff;
}

.restaurant-hero[b-mdqn6gtbeo] {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/images/restaurant-exterior.jpg') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.restaurant-overlay[b-mdqn6gtbeo] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.restaurant-content[b-mdqn6gtbeo] {
    text-align: center;
    color: white;
    animation: fadeInUp-b-mdqn6gtbeo 1s ease-out;
}

.restaurant-title[b-mdqn6gtbeo] {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    color: #FFD700;
}

.restaurant-subtitle[b-mdqn6gtbeo] {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    margin: 0;
}

.restaurant-details[b-mdqn6gtbeo] {
    padding: 5rem 0;
}

.container[b-mdqn6gtbeo] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.details-grid[b-mdqn6gtbeo] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.restaurant-info[b-mdqn6gtbeo] {
    animation: fadeInLeft-b-mdqn6gtbeo 1s ease-out;
}

.restaurant-info h3[b-mdqn6gtbeo] {
    font-size: 2.5rem;
    color: #D32F2F;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.restaurant-info p[b-mdqn6gtbeo] {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.features-list[b-mdqn6gtbeo] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item[b-mdqn6gtbeo] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover[b-mdqn6gtbeo] {
    transform: translateX(10px);
    background: #e3f2fd;
}

.feature-icon[b-mdqn6gtbeo] {
    font-size: 1.5rem;
}

.restaurant-image[b-mdqn6gtbeo] {
    animation: fadeInRight-b-mdqn6gtbeo 1s ease-out;
}

.interior-image[b-mdqn6gtbeo] {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.opening-hours[b-mdqn6gtbeo] {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 4rem;
    text-align: center;
}

.opening-hours h3[b-mdqn6gtbeo] {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hours-grid[b-mdqn6gtbeo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.hours-item[b-mdqn6gtbeo] {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.day[b-mdqn6gtbeo] {
    font-weight: 600;
    font-size: 1.1rem;
}

.hours[b-mdqn6gtbeo] {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 500;
}

.restaurant-gallery[b-mdqn6gtbeo] {
    text-align: center;
}

.restaurant-gallery h3[b-mdqn6gtbeo] {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 600;
}

.gallery-grid[b-mdqn6gtbeo] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item[b-mdqn6gtbeo] {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-item:hover[b-mdqn6gtbeo] {
    transform: translateY(-10px);
}

.gallery-image[b-mdqn6gtbeo] {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image[b-mdqn6gtbeo] {
    transform: scale(1.1);
}

.gallery-overlay[b-mdqn6gtbeo] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay[b-mdqn6gtbeo] {
    transform: translateY(0);
}

.gallery-overlay span[b-mdqn6gtbeo] {
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes fadeInUp-b-mdqn6gtbeo {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft-b-mdqn6gtbeo {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight-b-mdqn6gtbeo {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .restaurant-hero[b-mdqn6gtbeo] {
        height: 50vh;
    }
    
    .restaurant-title[b-mdqn6gtbeo] {
        font-size: 3rem;
    }
    
    .restaurant-subtitle[b-mdqn6gtbeo] {
        font-size: 1.2rem;
    }
    
    .restaurant-details[b-mdqn6gtbeo] {
        padding: 3rem 0;
    }
    
    .details-grid[b-mdqn6gtbeo] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .restaurant-info h3[b-mdqn6gtbeo] {
        font-size: 2rem;
    }
    
    .features-list[b-mdqn6gtbeo] {
        grid-template-columns: 1fr;
    }
    
    .hours-grid[b-mdqn6gtbeo] {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid[b-mdqn6gtbeo] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .restaurant-title[b-mdqn6gtbeo] {
        font-size: 2.5rem;
    }
    
    .container[b-mdqn6gtbeo] {
        padding: 0 1rem;
    }
    
    .opening-hours[b-mdqn6gtbeo] {
        padding: 2rem;
    }
    
    .hours-item[b-mdqn6gtbeo] {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* _content/Website_BOMOKft/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-4wqchae35q] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-4wqchae35q] {
    flex: 1;
}

.sidebar[b-4wqchae35q] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-4wqchae35q] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-4wqchae35q]  a, .top-row[b-4wqchae35q]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-4wqchae35q]  a:hover, .top-row[b-4wqchae35q]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-4wqchae35q]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-4wqchae35q] {
        justify-content: space-between;
    }

    .top-row[b-4wqchae35q]  a, .top-row[b-4wqchae35q]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-4wqchae35q] {
        flex-direction: row;
    }

    .sidebar[b-4wqchae35q] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-4wqchae35q] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-4wqchae35q]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-4wqchae35q], article[b-4wqchae35q] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-4wqchae35q] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-4wqchae35q] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
