/* _content/PayIncoin/Components/Layout/Footer.razor.rz.scp.css */
/* ============================================
   MODERN FOOTER STYLES WITH GLASSMORPHISM
   ============================================ */

.modern-footer[b-sfwzb413wx] {
    background: linear-gradient(180deg, var(--glass-bg) 0%, rgba(10, 14, 39, 0.8) 100%);
    border-top: 1px solid rgba(104, 102, 172, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 -8px 32px 0 rgba(31, 38, 135, 0.25);
    margin-top: auto;
    animation: slideUpIn-b-sfwzb413wx 0.8s ease-out;
}

.footer-container[b-sfwzb413wx] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    z-index: 1;
}

/* Grid Layout */
.footer-grid[b-sfwzb413wx] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(104, 102, 172, 0.1);
}

.footer-column[b-sfwzb413wx] {
    animation: fadeIn-b-sfwzb413wx 0.8s ease-out;
}

.footer-column:nth-child(2)[b-sfwzb413wx] {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3)[b-sfwzb413wx] {
    animation-delay: 0.2s;
}

/* Title Styling */
.footer-title[b-sfwzb413wx] {
    font-size: 1rem;
    font-weight: 600;
    color: #e8ecf1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6866ac 0%, #30b4b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Description */
.footer-description[b-sfwzb413wx] {
    color: #a8b2c1;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Links */
.footer-links[b-sfwzb413wx] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-sfwzb413wx] {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-links li:hover[b-sfwzb413wx] {
    transform: translateX(4px);
}

.footer-links a[b-sfwzb413wx] {
    color: #a8b2c1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a[b-sfwzb413wx]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6866ac, #30b4b2);
    transition: width 0.3s ease;
}

.footer-links a:hover[b-sfwzb413wx] {
    color: #6866ac;
}

.footer-links a:hover[b-sfwzb413wx]::after {
    width: 100%;
}

/* Bottom Section */
.footer-bottom[b-sfwzb413wx] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding-top: 1.5rem;
}

.footer-legal[b-sfwzb413wx] {
    text-align: left;
}

.legal-text[b-sfwzb413wx] {
    color: #7a8294;
    line-height: 1.6;
    font-size: 0.8rem;
}

.footer-copyright[b-sfwzb413wx] {
    text-align: right;
    color: #7a8294;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container[b-sfwzb413wx] {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer-grid[b-sfwzb413wx] {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .footer-bottom[b-sfwzb413wx] {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-copyright[b-sfwzb413wx] {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container[b-sfwzb413wx] {
        padding: 1.5rem 1rem 1rem;
    }

    .footer-grid[b-sfwzb413wx] {
        gap: 1.5rem;
    }

    .footer-title[b-sfwzb413wx] {
        font-size: 0.9rem;
    }

    .footer-description[b-sfwzb413wx] {
        font-size: 0.85rem;
    }

    .footer-links a[b-sfwzb413wx] {
        font-size: 0.85rem;
    }

    .legal-text[b-sfwzb413wx],
    .footer-copyright[b-sfwzb413wx] {
        font-size: 0.75rem;
    }
}

/* Animation for entrance */
@keyframes slideUpIn-b-sfwzb413wx {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-sfwzb413wx {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* _content/PayIncoin/Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================================
   DARK MODE THEME & GLASSMORPHISM DESIGN
   ============================================ */

:root[b-86r0qej822] {
    --primary-color: #6866ac;
    --secondary-color: #30b4b2;
    --background-dark: #0a0e27;
    --surface-dark: #1a1f3a;
    --surface-light: #252d48;
    --glass-bg: rgba(26, 31, 58, 0.7);
    --glass-border: rgba(104, 102, 172, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --text-primary: #e8ecf1;
    --text-secondary: #a8b2c1;
    --success-color: #51cf66;
    --error-color: #ff6b6b;
    --warning-color: #ffd43b;
    --info-color: #4dabf7;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

*[b-86r0qej822] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html[b-86r0qej822], body[b-86r0qej822] {
    background: var(--background-dark);
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* ============================================
   PAGE WRAPPER & LAYOUT
   ============================================ */

.page-wrapper[b-86r0qej822] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(135deg, 
        var(--background-dark) 0%, 
        #0f1535 50%, 
        var(--background-dark) 100%);
    position: relative;
    overflow-x: hidden;
}

/* Animated gradient background */
.page-wrapper[b-86r0qej822]::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(104, 102, 172, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(48, 180, 178, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift-b-86r0qej822 15s ease-in-out infinite;
}

@keyframes gradientShift-b-86r0qej822 {
    0%, 100% { 
        background: radial-gradient(circle at 20% 50%, rgba(104, 102, 172, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(48, 180, 178, 0.1) 0%, transparent 50%);
    }
    50% { 
        background: radial-gradient(circle at 80% 20%, rgba(104, 102, 172, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(48, 180, 178, 0.15) 0%, transparent 50%);
    }
}

/* ============================================
   HEADER STYLES
   ============================================ */

.modern-header[b-86r0qej822] {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDownIn-b-86r0qej822 0.6s ease-out;
}

@keyframes slideDownIn-b-86r0qej822 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-container[b-86r0qej822] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    height: 70px;
}

.logo-section[b-86r0qej822] {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInLeft-b-86r0qej822 0.8s ease-out 0.2s both;
}

.logo-image[b-86r0qej822] {
    transition: transform 0.3s ease;
}

.logo-image:hover[b-86r0qej822] {
    transform: scale(1.05);
}

.header-actions[b-86r0qej822] {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInRight-b-86r0qej822 0.8s ease-out 0.2s both;
}

.language-menu[b-86r0qej822] {
    transition: all 0.3s ease;
}

.language-menu:hover[b-86r0qej822] {
    background: rgba(104, 102, 172, 0.1);
    border-radius: 50%;
}

@keyframes fadeInLeft-b-86r0qej822 {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight-b-86r0qej822 {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content[b-86r0qej822] {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
}

.content-wrapper[b-86r0qej822] {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn-b-86r0qej822 0.8s ease-out 0.4s both;
}

@keyframes fadeIn-b-86r0qej822 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .header-container[b-86r0qej822] {
        padding: 1rem;
        height: 60px;
    }

    .main-content[b-86r0qej822] {
        padding: 1.5rem 0.5rem;
    }

    .content-wrapper[b-86r0qej822] {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .header-container[b-86r0qej822] {
        padding: 0.75rem;
        height: 56px;
    }

    .logo-image[b-86r0qej822] {
        height: 35px !important;
    }

    .main-content[b-86r0qej822] {
        padding: 1rem 0.25rem;
    }
}

/* ============================================
   ERROR UI
   ============================================ */

#blazor-error-ui[b-86r0qej822] {
    color-scheme: dark;
    background: rgba(255, 107, 107, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 107, 107, 0.3);
    border-left: 3px solid #ff6b6b;
    bottom: 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.75rem 1.5rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: #ff6b6b;
    animation: slideUpIn-b-86r0qej822 0.3s ease-out;
}

#blazor-error-ui.show[b-86r0qej822] {
    display: block;
}

@keyframes slideUpIn-b-86r0qej822 {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#blazor-error-ui .dismiss[b-86r0qej822] {
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

#blazor-error-ui .dismiss:hover[b-86r0qej822] {
    transform: translateY(-50%) scale(1.2);
    color: #ff8787;
}

#blazor-error-ui a.reload[b-86r0qej822] {
    color: #4dabf7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

#blazor-error-ui a.reload:hover[b-86r0qej822] {
    color: #74c0fc;
    border-bottom-color: #74c0fc;
}

/* ============================================
   GLASSMORPHISM CARD STYLES
   ============================================ */

/* Override MudBlazor Card styles for glassmorphism */
:deep(.mud-card)[b-86r0qej822] {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: var(--glass-shadow) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

:deep(.mud-card)[b-86r0qej822]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

:deep(.mud-card):hover[b-86r0qej822] {
    border-color: rgba(104, 102, 172, 0.5) !important;
    box-shadow: 0 8px 32px 0 rgba(104, 102, 172, 0.4) !important;
    transform: translateY(-4px);
}

:deep(.mud-card):hover[b-86r0qej822]::before {
    left: 100%;
}

/* ============================================
   FORM INPUTS - GLASSMORPHISM STYLE
   ============================================ */

:deep(.mud-input-base)[b-86r0qej822] {
    background: rgba(255, 255, 255, 0.05) !important;
}

:deep(.mud-outlined-input)[b-86r0qej822] {
    border-color: rgba(104, 102, 172, 0.3) !important;
    backdrop-filter: blur(5px) !important;
    transition: all 0.3s ease !important;
}

:deep(.mud-outlined-input:hover)[b-86r0qej822] {
    border-color: rgba(104, 102, 172, 0.5) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

:deep(.mud-outlined-input.mud-focused)[b-86r0qej822] {
    border-color: #6866ac !important;
    background: rgba(104, 102, 172, 0.1) !important;
    box-shadow: 0 0 20px rgba(104, 102, 172, 0.3) !important;
}

/* ============================================
   BUTTONS - GRADIENT & ANIMATIONS
   ============================================ */

:deep(.mud-button-filled)[b-86r0qej822] {
    background: linear-gradient(135deg, #6866ac 0%, #30b4b2 100%) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

:deep(.mud-button-filled)[b-86r0qej822]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

:deep(.mud-button-filled):hover[b-86r0qej822] {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(104, 102, 172, 0.4) !important;
}

:deep(.mud-button-filled):hover[b-86r0qej822]::before {
    left: 100%;
}

:deep(.mud-button-outlined)[b-86r0qej822] {
    border: 2px solid rgba(104, 102, 172, 0.5) !important;
    transition: all 0.3s ease !important;
}

:deep(.mud-button-outlined):hover[b-86r0qej822] {
    border-color: #6866ac !important;
    background: rgba(104, 102, 172, 0.1) !important;
    transform: translateY(-2px);
}

/* ============================================
   SELECT & DROPDOWN
   ============================================ */

:deep(.mud-select)[b-86r0qej822] {
    background: rgba(255, 255, 255, 0.05) !important;
}

:deep(.mud-popover-root)[b-86r0qej822] {
    backdrop-filter: blur(10px) !important;
}

:deep(.mud-popover)[b-86r0qej822] {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--glass-shadow) !important;
}

/* ============================================
   TEXT & TYPOGRAPHY
   ============================================ */

:deep(.mud-typography)[b-86r0qej822] {
    color: var(--text-primary);
}

:deep(.mud-typography.mud-typography-body2)[b-86r0qej822] {
    color: var(--text-secondary);
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

[b-86r0qej822]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

[b-86r0qej822]::-webkit-scrollbar-track {
    background: var(--surface-light);
    border-radius: 10px;
}

[b-86r0qej822]::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6866ac, #30b4b2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

[b-86r0qej822]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7d7ab3, #45c1bf);
}
/* _content/PayIncoin/Components/Pages/ComplaintSubmissionWizard.razor.rz.scp.css */
@keyframes slideIn-b-2h5ceayjgn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mud-button-gradient[b-2h5ceayjgn] {
    background: linear-gradient(135deg, #6866ac 0%, #30b4b2 100%) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mud-button-gradient:hover[b-2h5ceayjgn] {
    box-shadow: 0 8px 24px rgba(104, 102, 172, 0.4) !important;
    transform: translateY(-2px);
}

[b-2h5ceayjgn] .mud-stepper {
    background: transparent;
}

[b-2h5ceayjgn] .mud-stepper-vertical {
    background: transparent;
}

[b-2h5ceayjgn] .mud-step {
    padding: 1rem 0;
}

[b-2h5ceayjgn] .mud-step-header {
    background: transparent;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

[b-2h5ceayjgn] .mud-step-header:hover {
    background: rgba(104, 102, 172, 0.1);
}

[b-2h5ceayjgn] .mud-stepper-content {
    padding: 2rem 1rem;
}

/* Text styling for light background */
[b-2h5ceayjgn] .mud-text-h5,
[b-2h5ceayjgn] .mud-text-h6 {
    color: #1a1a2e !important;
}

[b-2h5ceayjgn] .mud-text-body1,
[b-2h5ceayjgn] .mud-text-body2 {
    color: #555 !important;
}

/* Form fields styling for light background */
[b-2h5ceayjgn] .mud-input-base {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(200, 200, 200, 0.5) !important;
}

[b-2h5ceayjgn] .mud-input-base:hover {
    border-color: rgba(100, 150, 255, 0.6) !important;
}

[b-2h5ceayjgn] .mud-input-base:focus-within {
    border-color: rgba(100, 150, 255, 0.8) !important;
}

[b-2h5ceayjgn] .mud-input-slot {
    color: #555 !important;
}

[b-2h5ceayjgn] .mud-input-slot.mud-input-adornment {
    color: #5c9dd9 !important;
}

[b-2h5ceayjgn] .mud-input {
    color: #333 !important;
}

[b-2h5ceayjgn] .mud-input::placeholder {
    color: #999 !important;
}
