/* /Components/AnimatedProfileCard.razor.rz.scp.css */
.circular-portrait[b-2ws3bpuwiz] {
    width: 100px;        /* Adjust size */
    height: 100px;       /* Make it a square */
    object-fit: cover;   /* Ensures it fills the box */
    border-radius: 50%;  /* Makes it a circle */
    border: 3px solid #ddd; /* Optional border */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); /* Optional shadow */
}

/* Animation */

.animated-titles[b-2ws3bpuwiz] {
    position: relative;
    height: 1.5em;
    font-size: 1.25rem;
    font-weight:500;
    overflow: hidden;
}

.animated-titles span[b-2ws3bpuwiz] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: fadeCycle-b-2ws3bpuwiz 6s infinite;
}

@keyframes fadeCycle-b-2ws3bpuwiz {
    0%   {opacity: 0; transform: translateY(100%);}
    5%  { opacity: 1; transform: translateY(0); }
    45%  { opacity: 1; transform: translateY(0); }
    55%  { opacity: 0; transform: translateY(-100%); }
    100% { opacity: 0; transform: translateY(-100%); }
}
/* /Layout/Footer.razor.rz.scp.css */
/* /Layout/MainLayout.razor.rz.scp.css */


.page[b-57rfh191dz] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-57rfh191dz] {
    flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

    .top-row[b-57rfh191dz], article[b-57rfh191dz] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* /Layout/NavMenu.razor.rz.scp.css */
body[b-jey3l8hr1c]::before {
    display: block;
    content: '';
    height: 60px;
}
