/* /Components/FirstTimeUserGuide/FirstTimeUserGuideOverlay.razor.rz.scp.css */
.first-time-user-overlay[b-9oksn5177f] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-9oksn5177f 0.3s ease-in-out;
}

.first-time-user-guide[b-9oksn5177f] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: fixed;
    z-index: 9999;
    animation: slideUp-b-9oksn5177f 0.3s ease-out forwards;
}

.first-time-user-guide.guide-no-animate[b-9oksn5177f] {
    animation: none;
    transition: all 0.15s ease-out;
}

/* Arrow pointer for the guide - points to the tab */
.first-time-user-guide[b-9oksn5177f]::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid white;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

/* Hide arrow when guide is centered (for final step) */
.first-time-user-guide[style*="translate(-50%, -50%)"][b-9oksn5177f]::before {
    display: none;
}

.guide-close-btn[b-9oksn5177f] {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.guide-close-btn:hover[b-9oksn5177f] {
    background-color: #f0f0f0;
    color: #333;
}

.guide-step[b-9oksn5177f] {
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guide-header[b-9oksn5177f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.guide-header h2[b-9oksn5177f] {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.guide-content[b-9oksn5177f] {
    text-align: center;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.guide-content p[b-9oksn5177f] {
    margin: 0 0 12px 0;
}

.guide-list[b-9oksn5177f] {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    text-align: left;
}

.guide-list li[b-9oksn5177f] {
    padding: 6px 0 6px 28px;
    position: relative;
    color: #666;
    font-size: 14px;
}

.guide-list li[b-9oksn5177f]:before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #594ae2;
    font-weight: bold;
}

.guide-highlight-info[b-9oksn5177f] {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f0e8ff;
    padding: 12px 14px;
    border-radius: 6px;
    border-left: 4px solid #594ae2;
    font-size: 13px;
    color: #594ae2;
}

.guide-highlight-info :deep(.mud-icon)[b-9oksn5177f] {
    flex-shrink: 0;
}

.guide-actions[b-9oksn5177f] {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-top: 12px;
}

.guide-actions :deep(.mud-button)[b-9oksn5177f] {
    min-width: 120px;
}

.highlight-overlay[b-9oksn5177f] {
    position: fixed;
    border: 3px solid #594ae2;
    border-radius: 8px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.7);
    z-index: 9998;
    pointer-events: none;
    animation: pulse-b-9oksn5177f 1.5s ease-in-out infinite;
}

@keyframes fadeIn-b-9oksn5177f {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-9oksn5177f {
    from {
        opacity: 0;
        top: calc(50% + 40px);
    }
    to {
        opacity: 1;
        top: 50%;
    }
}

@keyframes pulse-b-9oksn5177f {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(89, 74, 226, 0.3), inset 0 0 0 3px #594ae2;
    }
    50% {
        box-shadow: 0 0 0 10px rgba(89, 74, 226, 0), inset 0 0 0 3px #594ae2;
    }
}

/* Step indicator styles */
.guide-step-indicator[b-9oksn5177f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 32px 0 32px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 16px;
}

.step-counter[b-9oksn5177f] {
    font-size: 12px;
    font-weight: 600;
    color: #594ae2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-dots[b-9oksn5177f] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.step-dot[b-9oksn5177f] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e0e0e0;
    transition: all 0.3s ease;
}

.step-dot.active[b-9oksn5177f] {
    width: 12px;
    height: 12px;
    background-color: #594ae2;
    box-shadow: 0 0 0 3px rgba(89, 74, 226, 0.2);
}

.step-dot.completed[b-9oksn5177f] {
    background-color: #594ae2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .first-time-user-guide[b-9oksn5177f] {
        width: 95%;
        border-radius: 12px;
    }

    .first-time-user-guide[b-9oksn5177f]::before {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 16px solid white;
        top: -16px;
    }

    .guide-step[b-9oksn5177f] {
        padding: 32px 24px 24px 24px;
        gap: 16px;
    }

    .guide-header h2[b-9oksn5177f] {
        font-size: 20px;
    }

    .guide-content[b-9oksn5177f] {
        font-size: 13px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-t480x8rb7u] {
    position: relative;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

#blazor-error-ui[b-t480x8rb7u] {
    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-t480x8rb7u] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.mud-button-filled-primary:hover[b-t480x8rb7u]
{
    background-color:red;
}
