/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-tc9mamjidl] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

    .top-row[b-tc9mamjidl], article[b-tc9mamjidl] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.header--highlight[b-pnfef2ubpl] {
    color: #0C969C;
}

.landing-page__container[b-pnfef2ubpl] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5em;

    /*to mi się nie podoba ale narazie musi starczyc*/
    height: 90vh;
}

.landing-page__header[b-pnfef2ubpl] {
    margin-bottom: 0px;
    animation: slideDown-b-pnfef2ubpl 2s forwards;
    animation-delay: 1s;
    opacity: 0;
}

.canvas-look[b-pnfef2ubpl] {
    display: none;
    z-index: 100;
    width: min(400px, 90%);
    height: 450px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pulsing-text[b-pnfef2ubpl] {
    animation: pulse-b-pnfef2ubpl 2s infinite, slideUp-b-pnfef2ubpl 2s forwards;
    animation-delay: 1s;
    opacity: 0;
    font-size: 1.8em;
}

@keyframes slideUp-b-pnfef2ubpl {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown-b-pnfef2ubpl {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse-b-pnfef2ubpl {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
