/* _content/P21Api/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-e7w2aapxgb] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    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-e7w2aapxgb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/P21Api/Components/Pages/Home.razor.rz.scp.css */
/* Hero Section with Gradient and Pattern */
[b-0qtn6l3hgt] .hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    z-index: 1;
}

.hero-pattern[b-0qtn6l3hgt] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
    z-index: -1;
    animation: slidePattern-b-0qtn6l3hgt 20s linear infinite;
}

@keyframes slidePattern-b-0qtn6l3hgt {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(70px) translateY(70px);
    }
}

/* Stats Cards */
.stats-container[b-0qtn6l3hgt] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

[b-0qtn6l3hgt] .stats-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[b-0qtn6l3hgt] .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* MudChip Glass Effect */
[b-0qtn6l3hgt] .mud-chip-glass {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Service Cards */
[b-0qtn6l3hgt] .service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    overflow: hidden;
}

[b-0qtn6l3hgt] .service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

[b-0qtn6l3hgt] .service-card.disabled-card {
    opacity: 0.7;
    filter: grayscale(50%);
}

[b-0qtn6l3hgt] .service-card.disabled-card:hover {
    transform: none;
}

.card-glow[b-0qtn6l3hgt] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[b-0qtn6l3hgt] .service-card:hover .card-glow {
    opacity: 1;
}

/* Animated Service Icons */
[b-0qtn6l3hgt] .service-icon-animated {
    transition: transform 0.3s ease;
}

[b-0qtn6l3hgt] .service-card:hover .service-icon-animated {
    transform: rotate(360deg) scale(1.1);
}

/* Configuration Panel */
[b-0qtn6l3hgt] .config-panel {
    position: relative;
    overflow: hidden;
}

[b-0qtn6l3hgt] .config-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(102, 126, 234, 0.03) 10px,
        rgba(102, 126, 234, 0.03) 20px
    );
    animation: shimmer-b-0qtn6l3hgt 20s linear infinite;
    pointer-events: none;
}

@keyframes shimmer-b-0qtn6l3hgt {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

/* Button Hover Effects */
[b-0qtn6l3hgt] .mud-button-root {
    transition: all 0.3s ease;
}

[b-0qtn6l3hgt] .mud-button-root:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Fade In Animation */
@keyframes fadeInUp-b-0qtn6l3hgt {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[b-0qtn6l3hgt] .mud-grid-item {
    animation: fadeInUp-b-0qtn6l3hgt 0.6s ease-out backwards;
}

[b-0qtn6l3hgt] .mud-grid-item:nth-child(1) { animation-delay: 0.1s; }
[b-0qtn6l3hgt] .mud-grid-item:nth-child(2) { animation-delay: 0.2s; }
[b-0qtn6l3hgt] .mud-grid-item:nth-child(3) { animation-delay: 0.3s; }
[b-0qtn6l3hgt] .mud-grid-item:nth-child(4) { animation-delay: 0.4s; }
[b-0qtn6l3hgt] .mud-grid-item:nth-child(5) { animation-delay: 0.5s; }
[b-0qtn6l3hgt] .mud-grid-item:nth-child(6) { animation-delay: 0.6s; }

/* Pulse Animation for Status Chips */
[b-0qtn6l3hgt] .mud-chip .mud-icon-root {
    animation: pulse-b-0qtn6l3hgt 2s ease-in-out infinite;
}

@keyframes pulse-b-0qtn6l3hgt {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

/* Card Content Transitions */
[b-0qtn6l3hgt] .mud-card-content {
    transition: all 0.3s ease;
}

/* Typography Glow */
[b-0qtn6l3hgt] .mud-paper.hero-gradient .mud-typography {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 960px) {
    .stats-container[b-0qtn6l3hgt] {
        grid-template-columns: 1fr;
    }

    [b-0qtn6l3hgt] .service-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}
/* _content/P21Api/Components/Pages/PinAuth.razor.rz.scp.css */
.auth-pattern[b-i2h4g8ywd3] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: float-b-i2h4g8ywd3 8s ease-in-out infinite;
}

@keyframes float-b-i2h4g8ywd3 {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

[b-i2h4g8ywd3] .mud-input-outlined {
    background: white;
}

[b-i2h4g8ywd3] .mud-paper {
    transition: transform 0.3s ease;
}

@keyframes shake-b-i2h4g8ywd3 {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.shake[b-i2h4g8ywd3] {
    animation: shake-b-i2h4g8ywd3 0.5s;
}
