/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Sidebar i main layout */
.page[b-w7dcbdx1xl] {
    display: flex;
    min-height: 100vh;
}

.sidebar[b-w7dcbdx1xl] {
    width: 190px; /* prilagodi po želji */
    background-color: #F9DEAF;
    background: #F9DEAF;
    padding: 4px;
}

main[b-w7dcbdx1xl] {
    flex: 1;
    background-color: #f9f9f9;
    padding: 0;
    margin-left: 0px; /* razmak od sidebar-a */
    border-left: 0px solid #ccc; /* vizualna odvojenost */
}

/* Header bar */
.nav-item[b-w7dcbdx1xl] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px; /* razmak između elemenata */
    font-size: 10pt;
    background-color: #F9DEAF;
    height: 50px;
    padding: 0 15px;
    position: relative;
}

/* Tekst "In the year of ..." */
.nav-item span[b-w7dcbdx1xl] {
    color: white;
    font-family: sans-serif;
    font-weight: 800;
    font-size: 10pt;
}

/* Link Contact */
.nav-link[b-w7dcbdx1xl] {
    color: lightgray;
    text-shadow: 2px 2px 4px lightgray;
    text-decoration: none;
    font-weight: bold;
}

.nav-link:hover[b-w7dcbdx1xl] {
    color: white;
}
.content.px-4[b-w7dcbdx1xl] {
    padding-left: 0 !important;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
