/* _content/apoweb/Components/ApoCarousel.razor.rz.scp.css */
/* General carousel background styling */
.carousel-background[b-hvjs9j40tl] {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('img/Apotheke1.jpeg');
    background-size: cover; /* Ensure the background covers the entire area */
    background-repeat: no-repeat;
    background-position: center; /* Center the background for better visibility */
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.carousel-background2[b-hvjs9j40tl] {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('img/Apotheke2.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Carousel item styling */
.mud-carousel-item[b-hvjs9j40tl] {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent text and image overflow */
}

/* Image should fit the carousel */
.MudImage[b-hvjs9j40tl] {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image fills the carousel without distortion */
}

/* Overlay content styling (Text inside the carousel) */
.overlay-content[b-hvjs9j40tl] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 1rem;
    color: white !important;
    z-index: 2;
    max-width: 90%; /* Ensure the text does not overflow */
    max-height: 80%; /* Ensure the content stays within bounds */
    overflow-y: auto; /* Enable scrolling if the text exceeds the container */
}

    /* Ensure text fits within the carousel and does not overflow */
    .overlay-content p[b-hvjs9j40tl],
    .overlay-content h2[b-hvjs9j40tl],
    .overlay-content h4[b-hvjs9j40tl],
    .overlay-content h6[b-hvjs9j40tl],
    .overlay-content .mud-typography-h2[b-hvjs9j40tl] {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        color: white !important;
        margin: 0;
        word-wrap: break-word;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .mud-carousel[b-hvjs9j40tl] {
        height: auto; /* Allow height to adjust based on content */
    }

    .carousel-background[b-hvjs9j40tl], .carousel-background2[b-hvjs9j40tl] {
        height: 50vh; /* Adjust for iPad */
    }

    .overlay-content[b-hvjs9j40tl] {
        font-size: 1rem; /* Adjust font size for tablets */
        padding: 0.75rem;
    }

    .MudImage[b-hvjs9j40tl] {
        height: 50vh;
        object-fit: cover;
    }
}

@media (max-width: 640px) {
    .mud-carousel[b-hvjs9j40tl] {
        height: auto;
    }

    .carousel-background[b-hvjs9j40tl], .carousel-background2[b-hvjs9j40tl] {
        height: 40vh; /* Adjust for iPhones */
    }

    .overlay-content[b-hvjs9j40tl] {
        font-size: 0.875rem; /* Smaller font size for mobile */
        padding: 0.5rem;
    }

    .MudImage[b-hvjs9j40tl] {
        height: 40vh; /* Ensure the image fits within the container */
        object-fit: cover;
    }
}
/* _content/apoweb/Components/ApoContact.razor.rz.scp.css */
body[b-rlhoa2glye] {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header[b-rlhoa2glye] {
    background-color: #110e2d;
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}
    .header h2[b-rlhoa2glye] {
        color: white !important; /* Stelle sicher, dass der Header-Text weiß ist */
        font-size: 36px; /* Schriftgröße für das <h2>-Element */
        font-weight: 700;
    }
.container[b-rlhoa2glye] {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.contact[b-rlhoa2glye] {
    background-color: #f9f9f9;
    padding: 2rem 0;
}

.contact-info[b-rlhoa2glye] {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

    .contact-info h2[b-rlhoa2glye], .contact-info h3[b-rlhoa2glye] {
        margin-top: 0;
    }

    .contact-info ul[b-rlhoa2glye] {
        list-style: none;
        padding: 0;
    }

        .contact-info ul li[b-rlhoa2glye] {
            margin-bottom: 0.5rem;
        }

.map-container[b-rlhoa2glye] {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact .container[b-rlhoa2glye] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .contact .container[b-rlhoa2glye] {
        grid-template-columns: 1fr;
    }
}
/* _content/apoweb/Components/ApoERezept.razor.rz.scp.css */
body[b-ngy4gn7bhj] {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.header[b-ngy4gn7bhj] {
    background-color: #110e2d;
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

    .header h2[b-ngy4gn7bhj] {
        color: white !important;
        font-size: 36px;
        font-weight: 700;
    }

    .header .container[b-ngy4gn7bhj] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .header nav ul[b-ngy4gn7bhj] {
        list-style: none;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

        .header nav ul li a[b-ngy4gn7bhj] {
            color: white;
            text-decoration: none;
        }

.hero[b-ngy4gn7bhj] {
    background-color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

    .hero video[b-ngy4gn7bhj] {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position:relative;
        z-index:1;
    }



/* Media Queries for iPhone 12 Pro (screen width: 390px) */
@media (max-width: 390px) {
    body[b-ngy4gn7bhj] {
        font-size: 16px;
        line-height: 1.5;
    }

    .header h2[b-ngy4gn7bhj] {
        font-size: 28px; /* Reduce header text size on iPhone 12 Pro */
    }

    .hero video[b-ngy4gn7bhj] {
        width: 100%;
        height: auto;
    }

    
}

/* General media query for devices smaller than iPhone 12 Pro */
@media (max-width: 768px) {
    body[b-ngy4gn7bhj] {
        font-size: 16px;
    }

    .header h2[b-ngy4gn7bhj] {
        font-size: 28px;
    }

    .hero video[b-ngy4gn7bhj] {
        width: 100%;
        height: auto;
    }
}
/* _content/apoweb/Components/ApoFooter.razor.rz.scp.css */
.footer[b-nzcafeuecr] {
    background-color: #f4f4f4;
    padding: 2rem 1rem;
    text-align: left;
    font-size: 0.9rem;
    color: #333;
    border-top: 1px solid #ddd;
}

.footer-container[b-nzcafeuecr] {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem; /* Abstand zwischen den Spalten */
    flex-wrap: wrap; /* Ermöglicht das Umbruchverhalten auf kleineren Bildschirmen */
}

.footer-column[b-nzcafeuecr] {
    flex: 1;
    min-width: 300px; /* Mindestbreite für die Spalten */
}

.footer h3[b-nzcafeuecr] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer p[b-nzcafeuecr] {
    margin: 0.5rem 0;
}

.footer a[b-nzcafeuecr] {
    color: #007bff;
    text-decoration: none;
}

    .footer a:hover[b-nzcafeuecr] {
        text-decoration: underline;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container[b-nzcafeuecr] {
        flex-direction: column;
    }
}
/* _content/apoweb/Components/ApoServices.razor.rz.scp.css */
body[b-go5r3b05hj] {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.header[b-go5r3b05hj] {
    background-color: #110e2d;
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .header h2[b-go5r3b05hj] {
        color: white !important;
        font-size: 36px;
        font-weight: 700;
    }

    .header .container[b-go5r3b05hj] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .header nav ul[b-go5r3b05hj] {
        list-style: none;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

        .header nav ul li a[b-go5r3b05hj] {
            color: white;
            text-decoration: none;
        }

.hero[b-go5r3b05hj] {
    background-color: #e8e8e8;
    padding: 2rem 0;
    text-align: center;
}

h2[b-go5r3b05hj] {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
}

h4[b-go5r3b05hj] {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p[b-go5r3b05hj] {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.services[b-go5r3b05hj] {
    background-color: #f9f9f9;
    padding: 2rem 0;
}

    .services .container[b-go5r3b05hj] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 1rem;
    }

.service[b-go5r3b05hj] {
    background-color: white;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.team[b-go5r3b05hj], .contact[b-go5r3b05hj] {
    background-color: #e8e8e8;
    padding: 2rem 0;
    text-align: center;
}

.footer[b-go5r3b05hj] {
    background-color: #424242;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

/* Media Queries for iPhone 12 Pro (screen width: 390px) */
@media (max-width: 390px) {
    body[b-go5r3b05hj] {
        font-size: 16px;
        line-height: 1.5;
    }

    .header h2[b-go5r3b05hj] {
        font-size: 28px; /* Reduce header text size on iPhone 12 Pro */
    }

    h2[b-go5r3b05hj] {
        font-size: 28px; /* Reduce section heading sizes */
    }

    h4[b-go5r3b05hj] {
        font-size: 20px;
    }

    p[b-go5r3b05hj] {
        font-size: 16px;
        line-height: 1.6;
    }

    .services .container[b-go5r3b05hj] {
        grid-template-columns: 1fr; /* Stack services vertically */
    }

    .header nav ul[b-go5r3b05hj] {
        gap: 0.5rem; /* Reduce gap between navigation items */
        justify-content: center;
        flex-direction: column; /* Stack menu items vertically */
    }

    .header .container[b-go5r3b05hj] {
        flex-direction: column; /* Stack the container's content vertically */
        text-align: center;
    }

    .footer[b-go5r3b05hj] {
        padding: 0.5rem 0; /* Reduce footer padding for smaller screens */
    }
}

/* General media query for devices smaller than iPhone 12 Pro */
@media (max-width: 768px) {
    body[b-go5r3b05hj] {
        font-size: 16px;
    }

    .header h2[b-go5r3b05hj] {
        font-size: 28px;
    }

    h2[b-go5r3b05hj] {
        font-size: 28px;
    }

    h4[b-go5r3b05hj] {
        font-size: 20px;
    }

    p[b-go5r3b05hj] {
        font-size: 16px;
        line-height: 1.6;
    }

    .services .container[b-go5r3b05hj] {
        grid-template-columns: 1fr;
    }

    .header nav ul[b-go5r3b05hj] {
        gap: 0.5rem;
    }
}
/* _content/apoweb/Components/ApoTeam.razor.rz.scp.css */
/* General styling */
body[b-52mo1okprv] {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header[b-52mo1okprv] {
    background-color: #110e2d;
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

    .header h2[b-52mo1okprv] {
        color: white !important;
        font-size: 36px;
        font-weight: 700;
    }

    .header .container[b-52mo1okprv] {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap; /* Ensure it wraps on smaller screens */
    }

    .header nav ul[b-52mo1okprv] {
        list-style: none;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

.hero[b-52mo1okprv] {
    background-color: #e8e8e8;
    padding: 2rem 0;
    text-align: center;
}

.services[b-52mo1okprv] {
    background-color: #f9f9f9;
    padding: 2rem 0;
}

    .services .container[b-52mo1okprv] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(900px, 1fr)); /* Default layout for large screens */
        gap: 1rem;
    }

.service[b-52mo1okprv] {
    background-color: white;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-text[b-52mo1okprv] {
    flex: 1;
}

.team[b-52mo1okprv], .contact[b-52mo1okprv] {
    background-color: #e8e8e8;
    padding: 2rem 0;
    text-align: center;
}

.footer[b-52mo1okprv] {
    background-color: #424242;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

.image-team-member[b-52mo1okprv] {
    width: 100px;
    height: auto;
    float: right;
    margin-left: 10px;
    margin-top: 10px;
}

/* Media Queries for iPhone (max-width: 390px) */
@media (max-width: 390px) {
    body[b-52mo1okprv] {
        font-size: 14px;
    }

    .header h2[b-52mo1okprv] {
        font-size: 24px;
    }

    .header .container[b-52mo1okprv] {
        flex-direction: column;
        text-align: center;
    }

    .header nav ul[b-52mo1okprv] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .services .container[b-52mo1okprv] {
        grid-template-columns: 1fr; /* Ensure single column layout on small screens */
        gap: 1rem;
    }

    .service[b-52mo1okprv] {
        flex-direction: column; /* Stack the service items vertically */
        text-align: center;
    }

    .image-team-member[b-52mo1okprv] {
        width: 80px;
        margin-left: 0;
        float: none;
        margin: 0 auto;
    }

    .hero[b-52mo1okprv] {
        padding: 1rem 0;
    }

    .footer[b-52mo1okprv] {
        padding: 0.5rem 0;
    }
}

/* Media Queries for iPad (max-width: 768px) */
@media (max-width: 768px) {
    body[b-52mo1okprv] {
        font-size: 16px;
    }

    .header h2[b-52mo1okprv] {
        font-size: 28px;
    }

    .header .container[b-52mo1okprv] {
        flex-direction: column;
        text-align: center;
    }

    .header nav ul[b-52mo1okprv] {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .services .container[b-52mo1okprv] {
        grid-template-columns: 1fr 1fr; /* Two columns for larger screens like iPad */
        gap: 1rem;
    }

    .service[b-52mo1okprv] {
        flex-direction: row;
    }

    .image-team-member[b-52mo1okprv] {
        width: 100px;
        margin-left: 10px;
        margin-top: 10px;
    }
}
/* _content/apoweb/Pages/Home.razor.rz.scp.css */
.whatsapp-notification[b-uva4roiggv] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp Grün */
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    max-width: 350px;
    overflow: hidden;
    
}

.notification-content[b-uva4roiggv] {
    display: flex;
    align-items: center;
    width: 100%;
}

.whatsapp-notification i[b-uva4roiggv] {
    font-size: 2rem; /* Größe des WhatsApp-Icons */
    margin-right: 1rem;
}

.whatsapp-link[b-uva4roiggv] {
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin-left: 1rem;
    border: 1px solid white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    white-space: normal;
    max-width: 100%;
    overflow: hidden;
    text-overflow:ellipsis;
    display:inline-block;
}

    .whatsapp-link:hover[b-uva4roiggv] {
        background-color: white;
        color: #25D366;
    }

.close-btn[b-uva4roiggv] {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.0rem;
    cursor: pointer;
    z-index: 1001; /* Ensure button stays above other elements */
    font-weight: bold;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .whatsapp-notification[b-uva4roiggv] {
        bottom: 10px;
        right: 10px;
        padding: 1rem;
        max-width: 90%;
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-link[b-uva4roiggv] {
        width: 100%; /* Make the link occupy the full width */
        text-align: center; /* Center-align the text */
        margin-left: 0; /* Reset margin */
        margin-top: 0.5rem; /* Add space above the link */
    }

    .close-btn[b-uva4roiggv] {
        top: 5px;
        right: 5px;
    }
}
/* _content/apoweb/Shared/MainLayout.razor.rz.scp.css */
/* Desktop-specific styles (for larger screens) */

    .no-transparency[b-c33cyks9qy] {
    background-color: #ffffff !important; /* Solid background color */
    opacity: 1 !important; /* Ensure full opacity */
    }
    .MudAppBar[b-c33cyks9qy] {
        padding: 1rem; /* Standard padding for desktop */
        justify-content: flex-start;
        box-shadow: none !important; /* Remove shadow from the app bar */
        border: none !important;
        outline: none !important;
        border-radius: 0 !important;
    }

    .MudButton[b-c33cyks9qy] {
        font-size: 1rem; /* Button text for desktop */
        padding: 0.5rem 1rem; /* Larger padding for desktop */
        box-shadow: none !important; /* Remove shadow from the app bar */
        border-radius: 0 !important;
    }

    .MudImage[b-c33cyks9qy] {
        width: 60px; /* Logo size for desktop */
        height: 60px;
    }

    .MudDrawer[b-c33cyks9qy] {
        width: 250px; /* Standard drawer size for desktop */
        position: sticky; /* Keeps the drawer fixed */
        top: 0;
        height: 100vh; /* Full viewport height */
        box-shadow: none !important; /* Remove shadow from the app bar */
        border: none !important;
        outline: none !important;
    }

    .MudDrawerHeader[b-c33cyks9qy] {
        font-size: 1.5rem; /* Drawer header font size */
        padding: 1.5rem;
    }

    .MudNavLink[b-c33cyks9qy] {
        font-size: 1rem; /* Link font size for desktop */
        padding: 1rem; /* Larger padding for touch areas */
    }

    .MudIconButton[b-c33cyks9qy] {
        font-size: 1.5rem; /* Hamburger icon size */
    }

    /* Flex layout adjustments for desktop */
    .page[b-c33cyks9qy] {
        flex-direction: row; /* Flex items align horizontally on desktop */
    }
    .MudPaper[b-c33cyks9qy] {
        box-shadow: none !important; /* Remove shadow */
        border-radius: 0 !important; /* Remove rounded corners */
        border: none !important;
    }
.mud-paper[b-c33cyks9qy] {
    box-shadow: none !important; /* Remove shadow (elevation) */
    border-radius: 0 !important; /* Remove rounded corners */
}


    .sidebar[b-c33cyks9qy] {
        width: 250px; /* Sidebar width for desktop */
        height: 100vh; /* Sidebar takes full viewport height */
        position: sticky; /* Sticky sidebar */
        top: 0;
    }

    .top-row[b-c33cyks9qy] {
        height: 3.5rem; /* Fixed height for top-bar on desktop */
        display: flex;
        flex-direction: row; /* Align items horizontally */
        justify-content: flex-end;
        padding: 1rem;
        border-bottom: none;
    }

        .top-row a[b-c33cyks9qy], .top-row .btn-link[b-c33cyks9qy] {
            margin-left: 1.5rem;
            white-space: nowrap; /* Prevent text wrapping */
        }

            .top-row a:first-child[b-c33cyks9qy] {
                overflow: hidden;
                text-overflow: ellipsis;
            }




/* Mobile-specific styles (for smaller screens like iPhones and small tablets) */
@media (max-width: 640px) {
    .MudAppBar[b-c33cyks9qy] {
        padding: 0.5rem; /* Reduce padding for mobile screens */
        justify-content: space-between; /* Ensure space between logo and hamburger menu */
    }

    .MudButton[b-c33cyks9qy] {
        font-size: 0.875rem; /* Smaller button text on mobile */
        padding: 0.25rem 0.5rem; /* Adjust padding for smaller screens */
    }

    .MudImage[b-c33cyks9qy] {
        width: 40px; /* Reduce logo size for mobile screens */
        height: 40px;
    }

    /* Drawer adjustments */
    .MudDrawer[b-c33cyks9qy] {
        width: 100%; /* Full-width drawer for mobile */
        height: auto;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .MudDrawerHeader[b-c33cyks9qy] {
        font-size: 1.25rem; /* Adjust header font size inside the drawer */
        padding: 1rem; /* Add padding for the drawer header */
    }

    .MudNavLink[b-c33cyks9qy] {
        font-size: 1rem; /* Font size for links inside drawer */
        padding: 1rem; /* Ensure larger touch areas for links */
    }

    .MudIconButton[b-c33cyks9qy] {
        font-size: 1.5rem; /* Adjust hamburger icon size */
    }

    /* Flex layout adjustments for mobile */
    .page[b-c33cyks9qy] {
        flex-direction: column; /* Stack page contents vertically on mobile */
    }
    .MudPaper[b-c33cyks9qy] {
        box-shadow: none !important; /* Remove shadow */
        border-radius: 0 !important; /* Remove rounded corners */
        border: none !important;
    }

    .sidebar[b-c33cyks9qy] {
        width: 100%; /* Full-width sidebar */
        height: auto; /* Auto height for sidebar content */
        position: relative;
        display: none; /* Sidebar hidden by default */
    }

        .sidebar.active[b-c33cyks9qy] {
            display: block; /* Show sidebar when active */
        }

    .top-row[b-c33cyks9qy] {
        height: auto; /* Adjust top-row height for mobile */
        padding: 1rem;
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center elements */
        border-bottom: 1px solid #d6d5d5;
    }

        .top-row a[b-c33cyks9qy], .top-row .btn-link[b-c33cyks9qy] {
            white-space: normal; /* Allow text to wrap */
            margin: 0.5rem 0;
            text-align: center; /* Center links */
        }

    .sidebar[b-c33cyks9qy], .top-row[b-c33cyks9qy] {
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .top-row a:first-child[b-c33cyks9qy] {
            overflow: visible;
            text-overflow: clip;
        }
}
/* _content/apoweb/Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-4m2aucnr5o] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-4m2aucnr5o] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-4m2aucnr5o] {
    font-size: 1.1rem;
}

.oi[b-4m2aucnr5o] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-4m2aucnr5o] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-4m2aucnr5o] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-4m2aucnr5o] {
        padding-bottom: 1rem;
    }

    .nav-item[b-4m2aucnr5o]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-4m2aucnr5o]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-4m2aucnr5o]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-4m2aucnr5o] {
        display: none;
    }

    .collapse[b-4m2aucnr5o] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
