/* /Components/Banner.razor.rz.scp.css */
.banner[b-ru755pe56i] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    text-align: center;
    padding: 0 2rem;
}

.banner-content[b-ru755pe56i] {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1[b-ru755pe56i] {
    font-size: 36px;
    margin-bottom: 10px;
}

p[b-ru755pe56i] {
    font-size: 18px;
    margin-bottom: 20px;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-fct8e82yeq] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-fct8e82yeq] {
    flex: 1;
}

.sidebar[b-fct8e82yeq] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-fct8e82yeq] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-fct8e82yeq]  a, .top-row[b-fct8e82yeq]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-fct8e82yeq]  a:hover, .top-row[b-fct8e82yeq]  .btn-link:hover {
        text-decoration: underline;
    }

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

@media (max-width: 640.98px) {
    .top-row[b-fct8e82yeq] {
        justify-content: space-between;
    }

    .top-row[b-fct8e82yeq]  a, .top-row[b-fct8e82yeq]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-fct8e82yeq] {
        flex-direction: row;
    }

    .sidebar[b-fct8e82yeq] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-fct8e82yeq] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-fct8e82yeq]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-fct8e82yeq], article[b-fct8e82yeq] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Menu.css */
.navbar[b-dqsw5ru9nc] {
    padding: 1rem 2rem;
}

.navbar-brand[b-dqsw5ru9nc] {
    margin-right: 1rem;
}

.navbar-toggler[b-dqsw5ru9nc] {
    border: none;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border-radius: 0.25rem;
}

.navbar-toggler-icon[b-dqsw5ru9nc] {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}

.navbar-nav[b-dqsw5ru9nc] {
    flex-direction: row;
}

.nav-item[b-dqsw5ru9nc] {
    margin-right: 1rem;
}

.nav-link[b-dqsw5ru9nc] {
    color: #fff;
    transition: color 0.2s ease;
}

    .nav-link:hover[b-dqsw5ru9nc] {
        color: #ccc;
    }

#theme-toggle[b-dqsw5ru9nc] {
    margin-left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
}

#theme-icon[b-dqsw5ru9nc] {
    font-size: 1.25rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .navbar-nav[b-dqsw5ru9nc] {
        flex-direction: column;
    }

    .nav-item[b-dqsw5ru9nc] {
        margin-right: 0;
    }

    .nav-link[b-dqsw5ru9nc] {
        padding: 0.5rem 1rem;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.square[b-advibpcg4p], .circle[b-advibpcg4p] {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50px;
    animation: fall-b-advibpcg4p 2s infinite linear;
}

.square[b-advibpcg4p] {
    background-color: red;
}

.circle[b-advibpcg4p] {
    background-color: blue;
    border-radius: 50%;
}

@keyframes fall-b-advibpcg4p {
    0% {
        top: -50px;
    }

    100% {
        top: calc(100vh - 50px);
    }
}
