@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* _content/Cosmos/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-y35axhbl95] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-y35axhbl95] {
    flex: 1;
}

.sidebar[b-y35axhbl95] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-y35axhbl95] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-y35axhbl95]  a, .top-row[b-y35axhbl95]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-y35axhbl95]  a:hover, .top-row[b-y35axhbl95]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-y35axhbl95]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-y35axhbl95] {
        justify-content: space-between;
    }

    .top-row[b-y35axhbl95]  a, .top-row[b-y35axhbl95]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-y35axhbl95] {
        flex-direction: row;
    }

    .sidebar[b-y35axhbl95] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-y35axhbl95] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-y35axhbl95]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-y35axhbl95], article[b-y35axhbl95] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-y35axhbl95] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-y35axhbl95] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Cosmos/Components/Layout/SideBarLayout.razor.rz.scp.css */
/* _content/Cosmos/Components/Pages/Login/LoginUI.razor.rz.scp.css */
html[b-kxv4sua7qz], body[b-kxv4sua7qz] {
    margin: 0;
    height: 100%;
    overflow: hidden;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
}

.cosmos-orbit-wrapper[b-kxv4sua7qz] {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring[b-kxv4sua7qz] {
    position: absolute;
    width: 215px;
    height: 215px;
    border: 2px solid white;
    border-radius: 50%;
    animation: rotate-b-kxv4sua7qz 6s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet-letter[b-kxv4sua7qz] {
    position: absolute;
    transform: translate(100px, 0);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4.5rem;
    font-weight: bold;
    color: white;
    z-index: 3;
}

.planet-letter-2[b-kxv4sua7qz] {
    position: absolute;
    transform: translate(-100px, 0);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4.5rem;
    font-weight: bold;
    color: white;
    z-index: 3;
}

@keyframes rotate-b-kxv4sua7qz {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.orbit-text-fixed[b-kxv4sua7qz] {
    position: relative;
    z-index: 2;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 4.5rem;
    color: white;
    display: flex;
    gap: 0.3rem;
    align-items: center;
    justify-content: center;
}


.finance[b-kxv4sua7qz] {
    font-family: 'Josefin Sans', sans-serif;
    color: currentColor;
    font-size: 12vmin;
    position: relative;
    font-style: normal;
    width: 20vmin;
    text-align: center;
}

.placeholder[b-kxv4sua7qz] {
    visibility: hidden;
    width: 4.5rem;
}
/* _content/Cosmos/Components/Pages/Upload/FileUploadUI.razor.rz.scp.css */
/* Download Popup*/

.download-popup[custom-scope-identifier] {
    position: fixed;
    bottom: 20px;
    right: 20px; /* Show popup in right side*/
    z-index: 9999;
    background-color: #e6f5e9;
    border-radius: 10px;
    padding: 12px 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    animation: slideInRight-custom-scope-identifier 0.3s ease-out; /* Optional animation */
}

/* Optional animation for right side */
@keyframes slideInRight-custom-scope-identifier {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === Wrapper Styles === */
#FileUpload[custom-scope-identifier] {
    display: flex;
    justify-content: center;
}

.wrapper[custom-scope-identifier] {
    margin: 30px;
    padding: 10px;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    border-radius: 10px;
    background-color: white;
    width: 415px;
}

/* === Upload Box === */
.upload[custom-scope-identifier] {
    margin: 10px;
    height: 85px;
    border: 8px dashed #e6f5e9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

    .upload p[custom-scope-identifier] {
        margin-top: 12px;
        line-height: 0;
        font-size: 22px;
        color: #0c3214;
        letter-spacing: 1.5px;
    }

.upload__button[custom-scope-identifier] {
    background-color: #e6f5e9;
    border-radius: 10px;
    padding: 0px 8px 0px 10px;
}

    .upload__button:hover[custom-scope-identifier] {
        cursor: pointer;
        opacity: 0.8;
    }

/* === Uploaded Files === */
.uploaded[custom-scope-identifier] {
    width: 300px;
    margin: 10px;
    background-color: #e6f5e9;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.file[custom-scope-identifier] {
    display: flex;
    flex-direction: column;
}

.file__name[custom-scope-identifier] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    width: 230px;
    line-height: 1.2;
    color: #0c3214;
    letter-spacing: 1.5px;
}

.fa-times:hover[custom-scope-identifier] {
    cursor: pointer;
    opacity: 0.8;
}

.fa-file-pdf[custom-scope-identifier] {
    padding: 15px;
    font-size: 25px;
    color: #0c3214;
}
