/* /Shared/Dialog/Predictive/PredictiveSalesForecast.razor.rz.scp.css */
.forecast-container[b-q2jdfuuux4] {
    background: rgba(18, 18, 28, 0.9);
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.forecast-title[b-q2jdfuuux4] {
    color: #5bc0ff;
    text-shadow: 0 0 10px rgba(91, 192, 255, 0.6);
    margin-bottom: 1rem;
    font-weight: 600;
}

.forecast-chart[b-q2jdfuuux4] {
    width: 100%;
    height: 350px;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-ul0oq2v2og] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ul0oq2v2og] {
    flex: 1;
}

.sidebar[b-ul0oq2v2og] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ul0oq2v2og] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ul0oq2v2og]  a, .top-row .btn-link[b-ul0oq2v2og] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-ul0oq2v2og] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-ul0oq2v2og] {
        display: none;
    }

    .top-row.auth[b-ul0oq2v2og] {
        justify-content: space-between;
    }

    .top-row a[b-ul0oq2v2og], .top-row .btn-link[b-ul0oq2v2og] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ul0oq2v2og] {
        flex-direction: row;
    }

    .sidebar[b-ul0oq2v2og] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ul0oq2v2og] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-ul0oq2v2og], article[b-ul0oq2v2og] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Shared/PredictiveFloatingButton.razor.rz.scp.css */
.predictor-orb[b-klmiood43k] {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #3B82F6, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 25px rgba(139,92,246,.6);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    animation: orbPulse-b-klmiood43k 3s infinite;
}

    .predictor-orb:hover[b-klmiood43k] {
        transform: scale(1.1);
        box-shadow: 0 0 45px rgba(59,130,246,.9);
    }

@keyframes orbPulse-b-klmiood43k {
    0%,100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}
