/* _content/Grade.Website/Components/Layout/MainLayout.razor.rz.scp.css */
/* Modern MainLayout - MudBlazor Version */
:root[b-ln4a8rbakm] {
    --primary-gradient-start: #9493f3;
    --primary-gradient-end: #010080;
    --sidebar-width: 275px;
    --appbar-height: 64px;
}

/* Global Layout */
.mud-layout[b-ln4a8rbakm] {
    font-family: 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    min-height: 100vh;
}

/* AppBar Styles */
.mud-appbar[b-ln4a8rbakm] {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 0.5rem 1rem !important;
    animation: slideInFromTop-b-ln4a8rbakm 0.6s ease-out;
}

.mud-appbar .mud-stack[b-ln4a8rbakm] {
    height: 100%;
}

/* Logo and Brand */
.mud-appbar .mud-image[b-ln4a8rbakm] {
    transition: transform 0.3s ease;
}

.mud-appbar .mud-image:hover[b-ln4a8rbakm] {
    transform: scale(1.05);
}

/* Term Year Fields */
.mud-appbar .mud-input-control[b-ln4a8rbakm] {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    padding: 0 12px;
    transition: all 0.3s ease;
}

.mud-appbar .mud-input-control:hover[b-ln4a8rbakm] {
    background: rgba(0, 0, 0, 0.08);
}

.mud-appbar .mud-input-control .mud-input-label[b-ln4a8rbakm] {
    color: rgba(0, 0, 0, 0.6) !important;
    font-size: 0.875rem;
}

.mud-appbar .mud-input-control input[b-ln4a8rbakm] {
    color: rgba(0, 0, 0, 0.87) !important;
    font-weight: 500;
}

/* Icon Buttons */
.mud-icon-button[b-ln4a8rbakm] {
    transition: all 0.3s ease !important;
}

.mud-icon-button:hover[b-ln4a8rbakm] {
    transform: translateY(-2px);
}

/* Term Year Selector Button */
#GlobalTermYearSelectorButton[b-ln4a8rbakm] {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%) !important;
    color: white !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(148, 147, 243, 0.3) !important;
}

#GlobalTermYearSelectorButton:hover[b-ln4a8rbakm] {
    box-shadow: 0 6px 20px rgba(148, 147, 243, 0.4) !important;
    transform: translateY(-2px);
}

/* User Profile Area */
#GlobalProfileTopRight[b-ln4a8rbakm] {
    animation: fadeIn-b-ln4a8rbakm 0.8s ease-out 0.3s both;
}

/* Profile Button Card Enhancement */
#GlobalUserProfile .mud-button[b-ln4a8rbakm] {
    background: rgba(148, 147, 243, 0.1) !important;
    border-radius: 24px !important;
    padding: 4px 16px 4px 4px !important;
    transition: all 0.3s ease !important;
}

#GlobalUserProfile .mud-button:hover[b-ln4a8rbakm] {
    background: rgba(148, 147, 243, 0.2) !important;
    transform: translateY(-2px);
}

#GlobalUserProfileImage[b-ln4a8rbakm] {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%) !important;
    color: white !important;
    font-weight: 600 !important;
}

/* Sign Out Button */
#SignOutButton[b-ln4a8rbakm], #SignOutButtonMobile[b-ln4a8rbakm] {
    border-radius: 8px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    background: #f3f4f6 !important;
    color: #374151 !important;
}

#SignOutButton:hover[b-ln4a8rbakm], #SignOutButtonMobile:hover[b-ln4a8rbakm] {
    background: #e5e7eb !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Drawer Styles */
.mud-drawer[b-ln4a8rbakm] {
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.05) !important;
    animation: slideInFromLeft-b-ln4a8rbakm 0.4s ease-out;
}

.mud-drawer-content[b-ln4a8rbakm] {
    background: #ffffff !important;
    padding: 0 !important;
}

.drawer-container[b-ln4a8rbakm] {
    height: 100%;
    background: #ffffff;
}

.drawer-title[b-ln4a8rbakm] {
    color: #1f2937 !important;
    font-weight: 600 !important;
    letter-spacing: 0.025em;
}

/* Navigation Menu Enhancement */
.mud-drawer .mud-nav-item[b-ln4a8rbakm] {
    margin: 0.25rem 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mud-drawer .mud-nav-item:hover[b-ln4a8rbakm] {
    background: rgba(148, 147, 243, 0.1);
    transform: translateX(4px);
}

.mud-drawer .mud-nav-item-active[b-ln4a8rbakm] {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(148, 147, 243, 0.3);
}

/* Main Content Area */
.mud-main-content[b-ln4a8rbakm] {
    background: #f8fafc !important;
    min-height: calc(100vh - var(--appbar-height));
    animation: fadeIn-b-ln4a8rbakm 0.6s ease-out 0.2s both;
}

.main-container[b-ln4a8rbakm] {
    padding: 2rem 1.5rem !important;
}

.content-wrapper[b-ln4a8rbakm] {
    animation: fadeInUp-b-ln4a8rbakm 0.4s ease-out 0.2s both;
}

@media (min-width: 960px) {
    .main-container[b-ln4a8rbakm] {
        padding: 3rem 2rem !important;
    }
}

/* Card and Paper Elements */
.mud-main-content .mud-paper[b-ln4a8rbakm] {
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease;
}

.mud-main-content .mud-paper:hover[b-ln4a8rbakm] {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

/* Animations */
@keyframes slideInFromTop-b-ln4a8rbakm {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft-b-ln4a8rbakm {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInUp-b-ln4a8rbakm {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
.mud-progress-circular[b-ln4a8rbakm] {
    color: var(--primary-gradient-end) !important;
}

/* Responsive Adjustments */
@media (max-width: 960px) {
    .mud-appbar[b-ln4a8rbakm] {
        padding: 0.5rem !important;
    }
    
    .mud-drawer[b-ln4a8rbakm] {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.15) !important;
    }
}

@media (max-width: 600px) {
    #GlobalEduTermTextbox[b-ln4a8rbakm],
    #GlobalEduYearTextbox[b-ln4a8rbakm] {
        width: 80px !important;
    }
    
    .mud-main-content .mud-container[b-ln4a8rbakm] {
        padding: 1rem !important;
    }
}

/* Smooth Transitions */
*[b-ln4a8rbakm] {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-duration: 200ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States */
.mud-button:focus-visible[b-ln4a8rbakm],
.mud-icon-button:focus-visible[b-ln4a8rbakm] {
    outline: 2px solid var(--primary-gradient-end);
    outline-offset: 2px;
}

/* Snackbar Styling */
.mud-snackbar[b-ln4a8rbakm] {
    border-radius: 8px !important;
}

.mud-snackbar-content-message[b-ln4a8rbakm] {
    font-weight: 500;
}
/* _content/Grade.Website/Components/Pages/AccessDenied.razor.rz.scp.css */
/* Access Denied Page Styles */
:root[b-cso7dhx1un] {
    --primary-gradient-start: #9493f3;
    --primary-gradient-end: #010080;
}

/* Container */
.access-denied-container[b-cso7dhx1un] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background */
.access-denied-background[b-cso7dhx1un] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.animated-circle[b-cso7dhx1un] {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(148, 147, 243, 0.1) 0%, rgba(1, 0, 128, 0.1) 100%);
    animation: float-b-cso7dhx1un 20s infinite ease-in-out;
}

.circle-1[b-cso7dhx1un] {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2[b-cso7dhx1un] {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.circle-3[b-cso7dhx1un] {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

/* Content */
.access-denied-content[b-cso7dhx1un] {
    position: relative;
    z-index: 1;
    animation: slideUp-b-cso7dhx1un 0.6s ease-out;
}

.access-denied-card[b-cso7dhx1un] {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    border-radius: 24px !important;
    padding: 3rem 2rem !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeIn-b-cso7dhx1un 0.8s ease-out;
}

/* Icon Container */
.icon-container[b-cso7dhx1un] {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-b-cso7dhx1un 2s infinite;
    box-shadow: 0 10px 40px rgba(148, 147, 243, 0.3);
}

.icon-container[b-cso7dhx1un]::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    filter: blur(20px);
    opacity: 0.4;
    z-index: -1;
}

.access-icon[b-cso7dhx1un] {
    font-size: 3rem !important;
    color: white !important;
}

/* Gradient Text */
.gradient-text[b-cso7dhx1un] {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700 !important;
}

/* Custom Alert */
.custom-alert[b-cso7dhx1un] {
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%) !important;
    border-radius: 16px !important;
    padding: 1.25rem !important;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2) !important;
}

/* Action Buttons */
.action-button[b-cso7dhx1un] {
    min-width: 180px !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
}

.primary-button[b-cso7dhx1un] {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%) !important;
    box-shadow: 0 4px 20px rgba(148, 147, 243, 0.3) !important;
}

.primary-button:hover[b-cso7dhx1un] {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(148, 147, 243, 0.4) !important;
}

.secondary-button[b-cso7dhx1un] {
    border: 2px solid var(--primary-gradient-end) !important;
    color: var(--primary-gradient-end) !important;
}

.secondary-button:hover[b-cso7dhx1un] {
    background: linear-gradient(135deg, rgba(148, 147, 243, 0.1) 0%, rgba(1, 0, 128, 0.1) 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(1, 0, 128, 0.2) !important;
}

/* Animations */
@keyframes float-b-cso7dhx1un {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.3;
    }
    66% {
        transform: translateY(20px) rotate(240deg);
        opacity: 0.5;
    }
}

@keyframes fadeIn-b-cso7dhx1un {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp-b-cso7dhx1un {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-cso7dhx1un {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 960px) {
    .access-denied-card[b-cso7dhx1un] {
        padding: 2rem 1.5rem !important;
    }
    
    .icon-container[b-cso7dhx1un] {
        width: 100px;
        height: 100px;
    }
    
    .access-icon[b-cso7dhx1un] {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 600px) {
    .access-denied-card[b-cso7dhx1un] {
        padding: 1.5rem 1rem !important;
        margin: 1rem;
    }
    
    .icon-container[b-cso7dhx1un] {
        width: 80px;
        height: 80px;
    }
    
    .access-icon[b-cso7dhx1un] {
        font-size: 2rem !important;
    }
    
    .action-button[b-cso7dhx1un] {
        min-width: 140px !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem !important;
    }
    
    .gradient-text[b-cso7dhx1un] {
        font-size: 1.75rem !important;
    }
    
    .custom-alert[b-cso7dhx1un] {
        padding: 1rem !important;
    }
}
/* _content/Grade.Website/Components/Pages/LandingPage.razor.rz.scp.css */
/* Vertical Landing Page - MudBlazor Version */
.vertical-landing-page[b-7spf4ypmx1] {
    width: 100dvw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Noto Sans Thai', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* AppBar Styles */
.modern-appbar[b-7spf4ypmx1] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.appbar-container[b-7spf4ypmx1] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modern-appbar .mud-button[b-7spf4ypmx1] {
    color: #333333 !important;
}

.modern-appbar .brand-logo[b-7spf4ypmx1] {
    filter: none;
}

.appbar-brand[b-7spf4ypmx1] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo[b-7spf4ypmx1] {
    height: 40px;
    width: auto;
}

.brand-text[b-7spf4ypmx1] {
    display: flex;
    flex-direction: column;
}

.brand-title[b-7spf4ypmx1] {
    margin: 0 !important;
    font-weight: 500;
}

.brand-subtitle[b-7spf4ypmx1] {
    color: rgba(0, 0, 0, 0.7) !important;
    margin: 0 !important;
}

.appbar-actions[b-7spf4ypmx1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Section */
.landing-page-hero-section[b-7spf4ypmx1] {
    padding: 120px 0 80px;
    background: #ffffff;
    color: #333333;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: baseline !important;
    max-height: 115dvh;
}

.landing-page-hero-gradient-container[b-7spf4ypmx1] {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px; /* lg breakpoint */
    height: 100%;
    z-index: 0;
}

.landing-page-hero-gradient-background[b-7spf4ypmx1] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
    #f3e5f5 0%,
    #fce4ec 10%,
    #fff3e0 20%,
    #fff9c4 30%,
    #f0f4c3 40%,
    #dcedc8 50%,
    #c8e6c9 60%,
    #b2dfdb 70%,
    #e1bee7 80%,
    #b3e5fc 85%,
    #aed6f1 90%,
    #90caf9 95%,
    #bbdefb 98%,
    #e3f2fd 100%);
    mask: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 5%,
    rgba(255, 255, 255, 0.5) 15%,
    rgba(255, 255, 255, 1) 25%,
    rgba(255, 255, 255, 1) 75%,
    rgba(255, 255, 255, 0.5) 85%,
    rgba(255, 255, 255, 0.1) 95%,
    transparent 100%);
    -webkit-mask: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 5%,
    rgba(255, 255, 255, 0.5) 15%,
    rgba(255, 255, 255, 1) 25%,
    rgba(255, 255, 255, 1) 75%,
    rgba(255, 255, 255, 0.5) 85%,
    rgba(255, 255, 255, 0.1) 95%,
    transparent 100%);
    filter: blur(0px);
}

.landing-page-hero-gradient-background[b-7spf4ypmx1]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    right: -50px;
    bottom: 0;
    background: inherit;
    filter: blur(40px);
    z-index: -1;
}

.landing-page-hero-gradient-overlay[b-7spf4ypmx1] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, transparent 0%, rgba(226, 242, 253, 0.3) 100%),
    radial-gradient(ellipse at center bottom, rgba(252, 228, 236, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.landing-page-hero-section[b-7spf4ypmx1]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(179, 229, 252, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(225, 190, 231, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(255, 224, 178, 0.6) 0%, transparent 60%);
    z-index: 0;
}

.landing-page-hero-container[b-7spf4ypmx1] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.landing-page-hero-content[b-7spf4ypmx1] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 800px;
    margin: 100px auto 0 auto;
}

.landing-page-hero-title[b-7spf4ypmx1] {
    color: #333333 !important;
    font-size: 4rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.landing-page-hero-subtitle[b-7spf4ypmx1] {
    display: block;
    color: #666666;
    font-weight: 400;
    margin-top: 0.75rem;
    font-size: 0.5em;
    letter-spacing: 0.01em;
    opacity: 0.9;
}

.landing-page-hero-description[b-7spf4ypmx1] {
    color: #666666 !important;
    margin-bottom: 2rem !important;
    font-size: 1.25rem !important;
}

.landing-page-hero-actions[b-7spf4ypmx1] {
    width: 100%;
    max-width: 420px;
    margin-bottom: 2rem;
}

.forgot-password-link[b-7spf4ypmx1] {
    text-decoration: none !important;
}

.forgot-password-link .mud-button[b-7spf4ypmx1] {
    color: #666666 !important;
}

/* Screen Placeholder */

.screen-placeholder[b-7spf4ypmx1] {
    margin-top: 1rem;
    margin-inline: auto;
    width: 100%;
    max-width: 1600px;
}

.screen-frame[b-7spf4ypmx1] {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1),
    0 5px 20px -5px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 8px solid rgba(255, 255, 255, 0.2);
    max-width: 1400px;
    margin: 0 auto;
}

.screen-header[b-7spf4ypmx1] {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.screen-dots[b-7spf4ypmx1] {
    display: flex;
    gap: 8px;
    margin-right: auto;
}

.dot[b-7spf4ypmx1] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.8;
}

.dot.red[b-7spf4ypmx1] {
    background: #ff5f56;
}

.dot.yellow[b-7spf4ypmx1] {
    background: #ffbd2e;
}

.dot.green[b-7spf4ypmx1] {
    background: #27c93f;
}

.screen-title[b-7spf4ypmx1] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.screen-content[b-7spf4ypmx1] {
    background: #ffffff;
    aspect-ratio: 16 / 9;
    width: 100%;
}

.screen-skeleton[b-7spf4ypmx1] {
    display: flex;
    gap: 1.5rem;
    height: 100%;
}

.skeleton-sidebar[b-7spf4ypmx1] {
    width: 180px;
    background: #f3f4f6;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.skeleton-sidebar[b-7spf4ypmx1]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer-b-7spf4ypmx1 2s infinite;
}

.skeleton-main[b-7spf4ypmx1] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.skeleton-header[b-7spf4ypmx1] {
    height: 60px;
    background: #f9fafb;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.skeleton-header[b-7spf4ypmx1]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer-b-7spf4ypmx1 2s infinite 0.2s;
}

.skeleton-cards[b-7spf4ypmx1] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    flex: 1;
    align-content: start;
}

.skeleton-card[b-7spf4ypmx1] {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.skeleton-card[b-7spf4ypmx1]::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent);
    animation: shimmer-b-7spf4ypmx1 2s infinite;
}

.skeleton-card:nth-child(2)[b-7spf4ypmx1]::after {
    animation-delay: 0.2s;
}

.skeleton-card:nth-child(3)[b-7spf4ypmx1]::after {
    animation-delay: 0.4s;
}

@keyframes shimmer-b-7spf4ypmx1 {
    100% {
        left: 100%;
    }
}

@keyframes gradientShift-b-7spf4ypmx1 {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

/* Logo Section */

.logo-section[b-7spf4ypmx1] {
    margin-top: 4rem;
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
}

.logo-container[b-7spf4ypmx1] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 1rem;
}

.logo-item[b-7spf4ypmx1] {
    text-decoration: none !important;
    transition: transform 0.3s ease, filter 0.3s ease;
    animation: fadeInUp-b-7spf4ypmx1 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.logo-item:nth-child(1)[b-7spf4ypmx1] {
    animation-delay: 0.6s;
}

.logo-item:nth-child(2)[b-7spf4ypmx1] {
    animation-delay: 0.7s;
}

.logo-item:nth-child(3)[b-7spf4ypmx1] {
    animation-delay: 0.8s;
}

.logo-item:nth-child(4)[b-7spf4ypmx1] {
    animation-delay: 0.9s;
}

.logo-item:nth-child(5)[b-7spf4ypmx1] {
    animation-delay: 1s;
}

.logo-placeholder[b-7spf4ypmx1] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 120px;
    min-height: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-placeholder:hover[b-7spf4ypmx1] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(251, 146, 60, 0.2);
}

.logo-placeholder .mud-icon-root[b-7spf4ypmx1] {
    color: white !important;
    font-size: 2rem !important;
    transition: color 0.3s ease;
}

.logo-placeholder:hover .mud-icon-root[b-7spf4ypmx1] {
    color: #fbbf24 !important;
}

.logo-text[b-7spf4ypmx1] {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.logo-placeholder:hover .logo-text[b-7spf4ypmx1] {
    color: white;
}

@media (max-width: 768px) {
    .logo-container[b-7spf4ypmx1] {
        gap: 1rem;
    }

    .logo-placeholder[b-7spf4ypmx1] {
        min-width: 100px;
        min-height: 90px;
        padding: 1rem;
    }
}

/* Features Section */

.features-section[b-7spf4ypmx1] {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
}

.features-container[b-7spf4ypmx1] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header[b-7spf4ypmx1] {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title[b-7spf4ypmx1] {
    margin-bottom: 0.5rem !important;
}

.section-subtitle[b-7spf4ypmx1] {
    color: #6b7280 !important;
    margin-bottom: 3rem !important;
}

.feature-card[b-7spf4ypmx1] {
    height: 100%;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
}

.feature-card[b-7spf4ypmx1]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(148, 147, 243, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.feature-card:hover[b-7spf4ypmx1]::before {
    width: 600px;
    height: 600px;
}

.feature-card[b-7spf4ypmx1]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(148, 147, 243, 0.06) 0%,
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover[b-7spf4ypmx1]::after {
    opacity: 1;
}

.feature-card:hover[b-7spf4ypmx1] {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 0 20px 40px -15px rgba(148, 147, 243, 0.3),
    0 10px 20px -5px rgba(0, 0, 0, 0.1),
    inset 0 1px 3px rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(148, 147, 243, 0.2) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.feature-card:active[b-7spf4ypmx1] {
    transform: translateY(-8px) scale(1.01) !important;
    transition: all 0.1s ease !important;
}

.feature-content[b-7spf4ypmx1] {
    padding: 2.5rem 2rem !important;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon-wrapper[b-7spf4ypmx1] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    background-color: #eff6fb;
    width: 100%;
    height: 140px;
    border-radius: 0.7rem;
    margin-bottom: 0.5rem;
}

.feature-icon[b-7spf4ypmx1] {
    font-size: 2.5rem !important;
    color: white !important;
}

.feature-title[b-7spf4ypmx1] {
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    color: #1f2937 !important;
}

.feature-content .feature-description[b-7spf4ypmx1] {
    color: #6b7280 !important;
    line-height: 1.6 !important;
    opacity: 0.4 !important;
}

/* Workflow Section */

.workflow-section[b-7spf4ypmx1] {
    padding: 80px 0;
    background: white;
}

.workflow-container[b-7spf4ypmx1] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Section */

.contact-section[b-7spf4ypmx1] {
    padding: 100px 0 !important;
    background: linear-gradient(180deg, #fff5f5 0%, #ffffff 30%);
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.contact-section[b-7spf4ypmx1]::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(199, 31, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.contact-container[b-7spf4ypmx1] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header[b-7spf4ypmx1] {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info[b-7spf4ypmx1] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title[b-7spf4ypmx1] {
    margin-bottom: 1rem !important;
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #ff3366 0%, #3366ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle[b-7spf4ypmx1] {
    margin-bottom: 2rem !important;
}

.contact-details[b-7spf4ypmx1] {
    margin-top: 1rem;
}

.contact-cards[b-7spf4ypmx1] {
    width: 100%;
}

.contact-cards .mud-expansion-panels[b-7spf4ypmx1] {
    background: transparent !important;
    box-shadow: none !important;
}

.contact-cards .mud-expansion-panel[b-7spf4ypmx1] {
    background: white !important;
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.contact-cards .mud-expansion-panel:hover[b-7spf4ypmx1] {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(51, 102, 255, 0.2) !important;
}

.contact-visual[b-7spf4ypmx1] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.psu-logo[b-7spf4ypmx1] {
    width: 100%;
    max-width: 300px;
    height: auto;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.contact-visual:hover .psu-logo[b-7spf4ypmx1] {
    transform: scale(1.05) rotate(2deg);
}

/* Footer */

.footer-section[b-7spf4ypmx1] {
    padding: 48px 0 16px 0;
    background: linear-gradient(180deg, #001845 0%, #000428 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-section[b-7spf4ypmx1]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(251, 146, 60, 0.5), rgba(99, 102, 241, 0.5), transparent);
}

.footer-container[b-7spf4ypmx1] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content[b-7spf4ypmx1] {
    margin-bottom: 3rem;
}

.footer-column[b-7spf4ypmx1] {
    text-align: left;
}

.footer-heading[b-7spf4ypmx1] {
    color: white !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.1rem !important;
}

.footer-description[b-7spf4ypmx1] {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6 !important;
}

.footer-link[b-7spf4ypmx1] {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    display: block;
    padding: 0.25rem 0;
}

.footer-link:hover[b-7spf4ypmx1] {
    color: rgba(255, 255, 255, 1) !important;
    text-decoration: none !important;
}

.footer-divider[b-7spf4ypmx1] {
    border-color: rgba(255, 255, 255, 0.1) !important;
    margin: 2rem 0 !important;
}

.footer-column .mud-stack[b-7spf4ypmx1] {
    align-items: flex-start;
}

.footer-column .mud-button[b-7spf4ypmx1] {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0.25rem 0.5rem !important;
    justify-content: flex-start !important;
    min-width: auto !important;
    transition: color 0.3s ease !important;
}

.footer-column .mud-button:hover[b-7spf4ypmx1] {
    color: rgba(255, 255, 255, 1) !important;
    background: transparent !important;
}

.footer-copyright[b-7spf4ypmx1] {
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 1rem !important;
    font-size: 0.875rem !important;
}

/* Responsive Design */
@media (max-width: 960px) {
    .appbar-container[b-7spf4ypmx1] {
        padding: 0 1rem;
    }

    .hero-section[b-7spf4ypmx1] {
        padding: 60px 0 80px;
        align-items: baseline !important;
        max-height: 90dvh;
    }

    .hero-title[b-7spf4ypmx1] {
        font-size: 2.5rem !important;
    }

    .screen-placeholder[b-7spf4ypmx1] {
        margin-top: 3rem;
    }

    .screen-content[b-7spf4ypmx1] {
        /* Aspect ratio maintained */
    }

    .skeleton-cards[b-7spf4ypmx1] {
        grid-template-columns: repeat(2, 1fr);
    }

    .skeleton-sidebar[b-7spf4ypmx1] {
        width: 150px;
    }

    .features-section[b-7spf4ypmx1],
    .workflow-section[b-7spf4ypmx1],
    .contact-section[b-7spf4ypmx1] {
        padding: 60px 0;
    }

    .section-header[b-7spf4ypmx1] {
        margin-bottom: 2rem;
    }

    .footer-column[b-7spf4ypmx1] {
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-column .mud-stack[b-7spf4ypmx1] {
        align-items: center;
    }
}

/* Additional hover effects */
@media (hover: hover) {
    .feature-card[b-7spf4ypmx1] {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .feature-card:hover[b-7spf4ypmx1] {
        animation: pulse-b-7spf4ypmx1 2s infinite;
    }

    .feature-icon-wrapper[b-7spf4ypmx1] {
        animation: float-b-7spf4ypmx1 6s ease-in-out infinite;
    }

    @keyframes float-b-7spf4ypmx1 {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-5px);
        }
    }
}

@keyframes pulse-b-7spf4ypmx1 {
    0%, 100% {
        box-shadow: 0 20px 40px -15px rgba(148, 147, 243, 0.3),
        0 10px 20px -5px rgba(0, 0, 0, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 25px 50px -15px rgba(148, 147, 243, 0.4),
        0 15px 30px -5px rgba(0, 0, 0, 0.15),
        inset 0 1px 3px rgba(255, 255, 255, 0.5);
    }
}

@media (max-width: 600px) {
    .vertical-landing-page[b-7spf4ypmx1] {
        width: 100%;
        left: 0;
        transform: none;
    }

    .appbar-brand[b-7spf4ypmx1] {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .brand-text[b-7spf4ypmx1] {
        align-items: center;
    }

    .hero-section[b-7spf4ypmx1] {
        padding: 40px 0 60px;
        align-items: baseline !important;
        max-height: 90dvh;
    }

    .hero-title[b-7spf4ypmx1] {
        font-size: 1.8rem !important;
    }

    .hero-subtitle[b-7spf4ypmx1] {
        font-size: 0.5em !important;
    }

    .hero-description[b-7spf4ypmx1] {
        font-size: 1rem !important;
    }

    .screen-placeholder[b-7spf4ypmx1] {
        margin-top: 2rem;
    }

    .screen-frame[b-7spf4ypmx1] {
        transform: none;
    }

    .screen-content[b-7spf4ypmx1] {
        padding: 1rem;
        /* Aspect ratio maintained */
    }

    .skeleton-cards[b-7spf4ypmx1] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .skeleton-sidebar[b-7spf4ypmx1] {
        display: none;
    }

    .features-section[b-7spf4ypmx1],
    .workflow-section[b-7spf4ypmx1],
    .contact-section[b-7spf4ypmx1] {
        padding: 40px 0;
    }

    .contact-title[b-7spf4ypmx1] {
        font-size: 1.8rem !important;
    }

    .section-header[b-7spf4ypmx1] {
        margin-bottom: 2rem;
    }

    .feature-card[b-7spf4ypmx1] {
        margin-bottom: 1rem;
    }

    .contact-visual[b-7spf4ypmx1] {
        padding: 1rem;
    }

    .footer-section[b-7spf4ypmx1] {
        padding: 60px 0 30px;
    }

    .footer-column[b-7spf4ypmx1] {
        margin-bottom: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp-b-7spf4ypmx1 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop-b-7spf4ypmx1 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-7spf4ypmx1 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modern-appbar[b-7spf4ypmx1] {
    animation: slideInFromTop-b-7spf4ypmx1 0.6s ease-out;
}

.landing-page-hero-content[b-7spf4ypmx1] {
    animation: fadeIn-b-7spf4ypmx1 1s ease-out 0.3s both;
}

.feature-card[b-7spf4ypmx1] {
    animation: fadeInUp-b-7spf4ypmx1 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Staggered animation for feature cards */

.mud-grid-item:nth-child(1) .feature-card[b-7spf4ypmx1] {
    animation-delay: 0.1s;
}

.mud-grid-item:nth-child(2) .feature-card[b-7spf4ypmx1] {
    animation-delay: 0.2s;
}

.mud-grid-item:nth-child(3) .feature-card[b-7spf4ypmx1] {
    animation-delay: 0.3s;
}

.mud-grid-item:nth-child(4) .feature-card[b-7spf4ypmx1] {
    animation-delay: 0.4s;
}

.mud-grid-item:nth-child(5) .feature-card[b-7spf4ypmx1] {
    animation-delay: 0.5s;
}

.mud-grid-item:nth-child(6) .feature-card[b-7spf4ypmx1] {
    animation-delay: 0.6s;
}

.contact-details > div:nth-child(1)[b-7spf4ypmx1] {
    animation: fadeInUp-b-7spf4ypmx1 0.6s ease-out 0.2s both;
}

.contact-details > div:nth-child(2)[b-7spf4ypmx1] {
    animation: fadeInUp-b-7spf4ypmx1 0.6s ease-out 0.3s both;
}

.contact-details > div:nth-child(3)[b-7spf4ypmx1] {
    animation: fadeInUp-b-7spf4ypmx1 0.6s ease-out 0.4s both;
}

.contact-details > div:nth-child(4)[b-7spf4ypmx1] {
    animation: fadeInUp-b-7spf4ypmx1 0.6s ease-out 0.5s both;
}

/* Smooth scrolling */

html[b-7spf4ypmx1] {
    scroll-behavior: smooth;
}

/* Global style overrides for clean layout */

body[b-7spf4ypmx1] {
    margin: 0 !important;
    padding: 0 !important;
}
/* _content/Grade.Website/Components/Pages/Private/Home.razor.rz.scp.css */
/* Home Page Styles */
:root[b-9ha7y88v4b] {
    --primary-gradient-start: #9493f3;
    --primary-gradient-end: #010080;
}

/* Menu Section */
.menu-section[b-9ha7y88v4b] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    animation: slideUp-b-9ha7y88v4b 0.6s ease-out 0.2s both;
}

.menu-header[b-9ha7y88v4b] {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.menu-title[b-9ha7y88v4b] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.menu-icon[b-9ha7y88v4b] {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-grid[b-9ha7y88v4b] {
    padding: 2rem;
}


/* Loading State */
.loading-container[b-9ha7y88v4b] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Animations */
@keyframes fadeIn-b-9ha7y88v4b {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-9ha7y88v4b {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-9ha7y88v4b {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 960px) {
    .menu-header[b-9ha7y88v4b] {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }

    .menu-grid[b-9ha7y88v4b] {
        padding: 1.5rem;
    }
}

/* Notification Badge Animation */
.notification-pulse[b-9ha7y88v4b] {
    animation: pulse-b-9ha7y88v4b 2s infinite;
}

/* _content/Grade.Website/Components/Pages/Private/Profile.razor.rz.scp.css */
/* Modern Profile Page Styles */
:root[b-7wt3r69ioc] {
    --primary-gradient-start: #9493f3;
    --primary-gradient-end: #010080;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Page Container */
.profile-container[b-7wt3r69ioc] {
    animation: fadeIn-b-7wt3r69ioc 0.6s ease-out;
}

/* Hero Header Card */
.hero-header-card[b-7wt3r69ioc] {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%) !important;
    color: white !important;
    border-radius: 16px !important;
    overflow: hidden;
    position: relative;
    animation: slideInFromTop-b-7wt3r69ioc 0.5s ease-out;
}

.hero-header-card[b-7wt3r69ioc]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="rgba(255,255,255,.1)"/><stop offset="100%" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
    opacity: 0.1;
}

.hero-header-content[b-7wt3r69ioc] {
    position: relative;
    z-index: 1;
}

.hero-title[b-7wt3r69ioc] {
    font-weight: 500 !important;
    letter-spacing: 0.025em;
    margin-bottom: 0.5rem !important;
}

.hero-breadcrumb[b-7wt3r69ioc] {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.hero-breadcrumb .mud-breadcrumbs-item[b-7wt3r69ioc],
.hero-breadcrumb .mud-breadcrumbs-separator[b-7wt3r69ioc] {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Modern Cards */
.profile-card[b-7wt3r69ioc] {
    border-radius: 16px !important;
    box-shadow: var(--card-shadow) !important;
    transition: all 0.3s ease !important;
    background: white !important;
    overflow: hidden;
    animation: fadeInUp-b-7wt3r69ioc 0.6s ease-out both;
}

.profile-card:hover[b-7wt3r69ioc] {
    transform: translateY(-4px);
    box-shadow: var(--card-hover-shadow) !important;
}

/* Card Headers */
.card-header[b-7wt3r69ioc] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.card-icon[b-7wt3r69ioc] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(148, 147, 243, 0.3);
}

.card-title[b-7wt3r69ioc] {
    font-weight: 600 !important;
    color: #1f2937 !important;
    margin: 0 !important;
}

/* Personal Info Grid */
.info-item[b-7wt3r69ioc] {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover[b-7wt3r69ioc] {
    background: #f3f4f6;
    transform: translateX(4px);
}

.info-label[b-7wt3r69ioc] {
    color: #6b7280 !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    margin-bottom: 0.25rem !important;
}

.info-value[b-7wt3r69ioc] {
    color: #1f2937 !important;
    font-size: 1rem !important;
}

/* Settings Section */
.settings-section[b-7wt3r69ioc] {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.email-notification-section[b-7wt3r69ioc] {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.session-settings-section[b-7wt3r69ioc] {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

/* Form Controls */
.mud-select[b-7wt3r69ioc] {
    border-radius: 12px !important;
}

.mud-select .mud-input-control[b-7wt3r69ioc] {
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mud-select:hover .mud-input-control[b-7wt3r69ioc] {
    background: #f3f4f6;
}

.mud-select.mud-input-outlined .mud-input-slot[b-7wt3r69ioc] {
    border-radius: 12px !important;
}

/* Radio Buttons */
.mud-radio-group[b-7wt3r69ioc] {
    display: flex;
    gap: 2rem;
    margin-top: 0.75rem;
}

.mud-radio[b-7wt3r69ioc] {
    transition: all 0.3s ease;
}

.mud-radio:hover[b-7wt3r69ioc] {
    transform: scale(1.05);
}

/* Alert Styling */
.mud-alert-info[b-7wt3r69ioc] {
    border-radius: 12px !important;
    background: #eff6ff !important;
    border: 1px solid #dbeafe !important;
}

/* Button Styles */
.save-email-button[b-7wt3r69ioc] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
    transition: all 0.3s ease !important;
}

.save-email-button:hover[b-7wt3r69ioc] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

.switch-session-button[b-7wt3r69ioc] {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 0.75rem 2rem !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(148, 147, 243, 0.3) !important;
    transition: all 0.3s ease !important;
}

.switch-session-button:hover[b-7wt3r69ioc] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(148, 147, 243, 0.4) !important;
}

.switch-session-button:disabled[b-7wt3r69ioc],
.save-email-button:disabled[b-7wt3r69ioc] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Loading State */
.loading-overlay[b-7wt3r69ioc] {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
}

.mud-progress-linear[b-7wt3r69ioc] {
    border-radius: 4px !important;
}

.mud-progress-linear .mud-progress-linear-bar[b-7wt3r69ioc] {
    background: linear-gradient(90deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%) !important;
}

/* Divider */
.section-divider[b-7wt3r69ioc] {
    margin: 2rem 0 !important;
    background: #e5e7eb !important;
}

/* Animations */
@keyframes fadeIn-b-7wt3r69ioc {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp-b-7wt3r69ioc {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromTop-b-7wt3r69ioc {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Delays */
.profile-card:nth-child(2)[b-7wt3r69ioc] {
    animation-delay: 0.1s;
}

.profile-card:nth-child(3)[b-7wt3r69ioc] {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 960px) {
    .hero-title[b-7wt3r69ioc] {
        font-size: 2rem !important;
    }
    
    .card-header[b-7wt3r69ioc] {
        flex-wrap: wrap;
    }
    
    .info-item[b-7wt3r69ioc] {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 600px) {
    .hero-header-card[b-7wt3r69ioc] {
        border-radius: 12px !important;
    }
    
    .profile-card[b-7wt3r69ioc] {
        border-radius: 12px !important;
        margin-bottom: 1rem;
    }
    
    .submit-button[b-7wt3r69ioc] {
        width: 100%;
    }
}
/* _content/Grade.Website/Components/Shared/Common/Login.razor.rz.scp.css */
/* Enhanced Main Login Container Styles */
.login-container[b-84ejg9kdx5] {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.login-divider[b-84ejg9kdx5] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    position: relative;
}

.divider-line[b-84ejg9kdx5] {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right,
        transparent,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.2),
        transparent);
    position: relative;
    overflow: hidden;
}

.divider-text[b-84ejg9kdx5] {
    color: rgba(0, 0, 0, 0.9);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.divider-text:hover[b-84ejg9kdx5] {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Enhanced Responsive design */
@media (max-width: 480px) {
    .login-container[b-84ejg9kdx5] {
        padding: 0 0.5rem;
    }

    .login-divider[b-84ejg9kdx5] {
        margin: 1rem 0;
    }

    .divider-text[b-84ejg9kdx5] {
        font-size: 13px;
        padding: 6px 12px;
    }

    .divider-line[b-84ejg9kdx5] {
        height: 1px;
    }
}

/* Enhanced animations for smooth entrance */
@keyframes sophisticatedFadeInUp-b-84ejg9kdx5 {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(5px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(15px) scale(0.98);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes containerGlow-b-84ejg9kdx5 {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.2);
    }
}

.login-container[b-84ejg9kdx5] {
    animation: sophisticatedFadeInUp-b-84ejg9kdx5 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Staggered animation for child elements */
.login-container > *[b-84ejg9kdx5] {
    animation: sophisticatedFadeInUp-b-84ejg9kdx5 0.8s ease-out both;
}

.login-container > *:nth-child(1)[b-84ejg9kdx5] { animation-delay: 0.1s; }
.login-container > *:nth-child(2)[b-84ejg9kdx5] { animation-delay: 0.2s; }
.login-container > *:nth-child(3)[b-84ejg9kdx5] { animation-delay: 0.3s; }

/* Performance optimizations */
.login-container[b-84ejg9kdx5],
.login-divider[b-84ejg9kdx5],
.divider-text[b-84ejg9kdx5],
.divider-line[b-84ejg9kdx5] {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .login-container[b-84ejg9kdx5],
    .divider-line[b-84ejg9kdx5]::before,
    .divider-text[b-84ejg9kdx5] {
        animation: none !important;
        transition: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .divider-text[b-84ejg9kdx5] {
        background: rgba(255, 255, 255, 0.9) !important;
        color: #000 !important;
        border: 2px solid #fff !important;
    }

    .divider-line[b-84ejg9kdx5] {
        background: #fff !important;
    }
}
/* _content/Grade.Website/Components/Shared/Common/OAuthLoginButton.razor.rz.scp.css */
/* Modern Login Button Styles - MudBlazor Version */
.modern-login-button-container[b-a326cew115] {
    width: 100%;
    position: relative;
}

.modern-login-button-container[b-a326cew115]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    transform: scale(1.05);
    filter: blur(20px);
}

.modern-login-button-container:hover[b-a326cew115]::before {
    opacity: 0.7;
}

.modern-login-button[b-a326cew115] {
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.modern-login-button:is(:hover, :focus)[b-a326cew115] {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow:
        0 20px 40px rgba(102, 126, 234, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
}

.modern-login-button:active[b-a326cew115] {
    transform: translateY(-2px) scale(0.98) !important;
    transition: all 0.1s ease !important;
}

.modern-login-button:disabled[b-a326cew115] {
    transform: none !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* Animated gradient background */
.modern-login-button[b-a326cew115]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.modern-login-button:hover[b-a326cew115]::before {
    left: 100%;
}

/* Floating particles effect */
.modern-login-button[b-a326cew115]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.modern-login-button:hover[b-a326cew115]::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.login-button-content[b-a326cew115] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 8px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-button-icon[b-a326cew115] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-login-button:hover .login-button-icon[b-a326cew115] {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.login-button-text[b-a326cew115] {
    flex: 1;
    text-align: center;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.modern-login-button:hover .login-button-text[b-a326cew115] {
    transform: translateY(-1px);
}

.login-text-main[b-a326cew115] {
    font-size: 16px;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.login-text-sub[b-a326cew115] {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1;
    transition: all 0.3s ease;
}

.modern-login-button:hover .login-text-main[b-a326cew115] {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.modern-login-button:hover .login-text-sub[b-a326cew115] {
    color: rgba(255, 255, 255, 0.95);
}

.login-button-arrow[b-a326cew115] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.8;
}

.modern-login-button:hover .login-button-arrow[b-a326cew115] {
    transform: translateX(8px) scale(1.2);
    opacity: 1;
}

/* Enhanced Loading state animations */
.modern-login-button.mud-disabled .login-button-icon[b-a326cew115] {
    background: rgba(255, 255, 255, 0.2);
    animation: iconPulse-b-a326cew115 1.5s ease-in-out infinite;
}

.modern-login-button:disabled .login-text-main[b-a326cew115],
.modern-login-button:disabled .login-text-sub[b-a326cew115] {
    opacity: 0.95;
}

/* Advanced loading animations */
@keyframes iconPulse-b-a326cew115 {
    0%, 100% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.3);
    }
}

@keyframes modernPulse-b-a326cew115 {
    0% {
        box-shadow:
            0 8px 25px rgba(102, 126, 234, 0.3),
            0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow:
            0 12px 35px rgba(102, 126, 234, 0.4),
            0 0 0 8px rgba(102, 126, 234, 0.1);
    }
    100% {
        box-shadow:
            0 8px 25px rgba(102, 126, 234, 0.3),
            0 0 0 0 rgba(102, 126, 234, 0);
    }
}

@keyframes loadingShimmer-b-a326cew115 {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.modern-login-button:disabled[b-a326cew115] {
    animation: modernPulse-b-a326cew115 2s ease-in-out infinite;
    background: linear-gradient(
        90deg,
        #667eea 0%,
        #8b9cf5 25%,
        #667eea 50%,
        #8b9cf5 75%,
        #667eea 100%
    ) !important;
    background-size: 200% 100%;
    animation: modernPulse-b-a326cew115 2s ease-in-out infinite, loadingShimmer-b-a326cew115 2s linear infinite;
}

/* Enhanced micro-interactions */
@keyframes buttonPress-b-a326cew115 {
    0% { transform: translateY(-6px) scale(1.02); }
    50% { transform: translateY(-4px) scale(1.01); }
    100% { transform: translateY(-6px) scale(1.02); }
}

.modern-login-button:hover[b-a326cew115] {
    animation: buttonPress-b-a326cew115 3s ease-in-out infinite;
}

/* Magnetic effect */
@keyframes magneticPull-b-a326cew115 {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
}

.modern-login-button:hover .login-button-arrow[b-a326cew115] {
    animation: magneticPull-b-a326cew115 2s ease-in-out infinite;
}

/* Responsive design */
@media (max-width: 480px) {
    .modern-login-button[b-a326cew115] {
        height: 56px !important;
    }

    .login-text-main[b-a326cew115] {
        font-size: 15px;
    }

    .login-text-sub[b-a326cew115] {
        font-size: 11px;
    }

    .login-button-icon[b-a326cew115] {
        min-width: 28px;
        height: 28px;
    }

    .login-button-content[b-a326cew115] {
        padding: 0 6px;
    }
}

/* Focus states for accessibility */
.modern-login-button:focus[b-a326cew115] {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .modern-login-button[b-a326cew115] {
        border: 2px solid white !important;
    }

    .login-button-icon[b-a326cew115] {
        background: rgba(255, 255, 255, 0.3) !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .modern-login-button[b-a326cew115],
    .login-button-icon[b-a326cew115],
    .login-button-arrow[b-a326cew115],
    .modern-login-button[b-a326cew115]::before {
        transition: none !important;
        animation: none !important;
    }

    .modern-login-button:hover[b-a326cew115] {
        transform: none !important;
    }
}
/* _content/Grade.Website/Components/Shared/Common/UnAuthenLogin.razor.rz.scp.css */
/* Enhanced Development Login Styles - MudBlazor Version */
.dev-login-container[b-hdq0h3ubqh] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: devContainerEntrance-b-hdq0h3ubqh 1s ease-out;
}

.dev-login-container[b-hdq0h3ubqh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.6s ease;
}

.dev-login-container:hover[b-hdq0h3ubqh]::before {
    left: 100%;
}

.dev-login-container:hover[b-hdq0h3ubqh] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.dev-input-container[b-hdq0h3ubqh] {
    position: relative;
}

/* MudTextField styling */
.dev-input-container[b-hdq0h3ubqh]  .mud-input-root {
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 10px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.dev-input-container[b-hdq0h3ubqh]  .mud-input-root-outlined {
    border: 2px solid rgba(229, 231, 235, 0.3) !important;
}

.dev-input-container[b-hdq0h3ubqh]  .mud-input-root:hover .mud-input-outlined-border {
    border-color: rgba(245, 158, 11, 0.5) !important;
}

.dev-input-container[b-hdq0h3ubqh]  .mud-input-root.mud-input-focused {
    background: rgba(255, 255, 255, 1) !important;
}

.dev-input-container[b-hdq0h3ubqh]  .mud-input-root.mud-input-focused .mud-input-outlined-border {
    border-color: #f59e0b !important;
    border-width: 2px !important;
    box-shadow: 
        0 0 0 4px rgba(245, 158, 11, 0.15) !important,
        0 4px 15px rgba(245, 158, 11, 0.1) !important;
}

.dev-input-container[b-hdq0h3ubqh]  .mud-input-slot {
    height: 50px !important;
    padding: 0 16px !important;
    font-size: 16px !important;
}

.dev-input-container[b-hdq0h3ubqh]  input {
    height: 100% !important;
    font-size: 16px !important;
}

/* MudButton styling */
.dev-login-button[b-hdq0h3ubqh] {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2) !important;
}

.dev-login-button[b-hdq0h3ubqh]::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;
    z-index: 1;
}

.dev-login-button:hover[b-hdq0h3ubqh]::before {
    left: 100%;
}

.dev-login-button:hover:not(:disabled)[b-hdq0h3ubqh] {
    background: #d97706 !important;
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 
        0 12px 30px rgba(245, 158, 11, 0.4) !important,
        0 6px 15px rgba(0, 0, 0, 0.1) !important;
}

.dev-login-button:active:not(:disabled)[b-hdq0h3ubqh] {
    transform: translateY(-1px) scale(0.98) !important;
    transition: all 0.1s ease !important;
}

.dev-login-button:disabled[b-hdq0h3ubqh] {
    background: #9ca3af !important;
    cursor: not-allowed;
    transform: none !important;
    animation: devLoadingPulse-b-hdq0h3ubqh 2s ease-in-out infinite;
}

/* Enhanced loading animation for dev button */
@keyframes devLoadingPulse-b-hdq0h3ubqh {
    0% {
        box-shadow: 0 4px 15px rgba(156, 163, 175, 0.3);
        background: #9ca3af !important;
    }
    50% {
        box-shadow: 0 6px 20px rgba(156, 163, 175, 0.5);
        background: #6b7280 !important;
    }
    100% {
        box-shadow: 0 4px 15px rgba(156, 163, 175, 0.3);
        background: #9ca3af !important;
    }
}

/* Typing effect for input */
@keyframes inputGlow-b-hdq0h3ubqh {
    0%, 100% { box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.1); }
    50% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2); }
}

.dev-input-container[b-hdq0h3ubqh]  .mud-input-root.mud-input-focused {
    animation: inputGlow-b-hdq0h3ubqh 2s ease-in-out infinite;
}

/* Focus states */
.dev-login-button:focus[b-hdq0h3ubqh] {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Advanced entrance animation */
@keyframes devContainerEntrance-b-hdq0h3ubqh {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        transform: translateY(10px) scale(0.98);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Enhanced glow effects */
.dev-login-container[b-hdq0h3ubqh]::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(245, 158, 11, 0.1), 
        transparent, 
        rgba(245, 158, 11, 0.1), 
        transparent);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: devGlowPulse-b-hdq0h3ubqh 3s ease-in-out infinite;
}

.dev-login-container:hover[b-hdq0h3ubqh]::after {
    opacity: 1;
}

@keyframes devGlowPulse-b-hdq0h3ubqh {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.3;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.7;
    }
}

/* Enhanced input animations */
.dev-input-container[b-hdq0h3ubqh]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.dev-input-container:has(.mud-input-focused)[b-hdq0h3ubqh]::before {
    opacity: 1;
    animation: inputSweep-b-hdq0h3ubqh 2s ease-in-out infinite;
}

@keyframes inputSweep-b-hdq0h3ubqh {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Sophisticated button effects */
.dev-login-button[b-hdq0h3ubqh]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 2;
}

.dev-login-button:hover[b-hdq0h3ubqh]::after {
    width: 200px;
    height: 200px;
    opacity: 0;
}

/* Enhanced loading state with particles */
.dev-login-button:disabled[b-hdq0h3ubqh]::before {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.3), 
        rgba(255, 255, 255, 0.1));
    animation: loadingParticles-b-hdq0h3ubqh 1.5s linear infinite;
}

@keyframes loadingParticles-b-hdq0h3ubqh {
    0% { left: -100%; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Micro-interaction improvements */
.dev-input-container[b-hdq0h3ubqh]  .mud-input-root {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.dev-input-container[b-hdq0h3ubqh]  .mud-input-root.mud-input-focused {
    animation: inputGlow-b-hdq0h3ubqh 2s ease-in-out infinite, inputFloat-b-hdq0h3ubqh 4s ease-in-out infinite;
}

@keyframes inputFloat-b-hdq0h3ubqh {
    0%, 100% { transform: scale(1.02) translateY(0); }
    50% { transform: scale(1.02) translateY(-2px); }
}

/* Enhanced button press animation */
@keyframes devButtonPress-b-hdq0h3ubqh {
    0% { transform: translateY(-4px) scale(1.02); }
    50% { transform: translateY(-2px) scale(1.01); }
    100% { transform: translateY(-4px) scale(1.02); }
}

.dev-login-button:hover:not(:disabled)[b-hdq0h3ubqh] {
    animation: devButtonPress-b-hdq0h3ubqh 2s ease-in-out infinite;
}

/* Performance optimizations */
.dev-login-container[b-hdq0h3ubqh],
.dev-login-button[b-hdq0h3ubqh] {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .dev-login-container[b-hdq0h3ubqh],
    .dev-login-button[b-hdq0h3ubqh],
    .dev-login-container[b-hdq0h3ubqh]::before,
    .dev-login-container[b-hdq0h3ubqh]::after,
    .dev-input-container[b-hdq0h3ubqh]  .mud-input-root {
        animation: none !important;
        transition: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .dev-login-container[b-hdq0h3ubqh] {
        background: rgba(255, 255, 255, 0.9) !important;
        border: 2px solid #000 !important;
    }
    
    .dev-input-container[b-hdq0h3ubqh]  .mud-input-root {
        background: #fff !important;
    }
    
    .dev-input-container[b-hdq0h3ubqh]  .mud-input-root-outlined {
        border: 2px solid #000 !important;
    }
    
    .dev-login-button[b-hdq0h3ubqh] {
        background: #000 !important;
        border: 2px solid #fff !important;
        color: #fff !important;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .dev-login-container[b-hdq0h3ubqh] {
        padding: 0.75rem;
    }
    
    .dev-input-container[b-hdq0h3ubqh]  .mud-input-slot {
        height: 48px !important;
        padding: 0 14px !important;
        font-size: 15px !important;
    }
    
    .dev-input-container[b-hdq0h3ubqh]  input {
        font-size: 15px !important;
    }
    
    .dev-login-button[b-hdq0h3ubqh] {
        height: 48px !important;
        font-size: 15px !important;
    }
}
/* _content/Grade.Website/Components/Shared/Dashboard/GradeStatusCard.razor.rz.scp.css */
/* Status Card Styles */
.stat-card[b-915gegbcu9] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    animation: fadeIn-b-915gegbcu9 0.6s ease-out;
}

.stat-card:hover[b-915gegbcu9] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-card-active[b-915gegbcu9] {
    background: var(--card-active-bg-gradient, linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%)) !important;
    border: 3px solid var(--card-active-border-color, #6366f1) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.stat-icon[b-915gegbcu9] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-label[b-915gegbcu9] {
    color: #64748b !important;
    font-size: 0.875rem !important;
}

/* Animations */
@keyframes fadeIn-b-915gegbcu9 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* _content/Grade.Website/Components/Shared/Dashboard/HeroSection.razor.rz.scp.css */
/* Hero Section */
.hero-section[b-so9md5yy4s] {
    background: linear-gradient(135deg, #54a4ff 0%, #010080 100%);
    border-radius: 0.75rem;
    padding: 3rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn-b-so9md5yy4s 0.6s ease-out;
    align-items: baseline;
    max-height: 90dvh;
}

.hero-section[b-so9md5yy4s]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.hero-content[b-so9md5yy4s] {
    position: relative;
    z-index: 1;
}

.welcome-text[b-so9md5yy4s] {
    color: white !important;
    opacity: 0.9;
}

.user-name[b-so9md5yy4s] {
    color: white !important;
    font-weight: 600 !important;
}

.hero-subtitle[b-so9md5yy4s] {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-top: 0.5rem !important;
}

/* Quick Actions */
.quick-actions[b-so9md5yy4s] {
    display: flex;
    gap: 1rem;
}

.quick-actions .mud-button[b-so9md5yy4s] {
    background: white !important;
    border-radius: 12px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    min-height: 48px;
}

.quick-actions .mud-button:hover[b-so9md5yy4s] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.quick-actions .mud-button .mud-button-label[b-so9md5yy4s] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Animations */
@keyframes fadeIn-b-so9md5yy4s {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 960px) {
    .hero-section[b-so9md5yy4s] {
        padding: 2rem;
    }

    .quick-actions[b-so9md5yy4s] {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 600px) {
    .hero-section[b-so9md5yy4s] {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .welcome-text[b-so9md5yy4s] {
        font-size: 1.5rem !important;
    }

    .quick-actions[b-so9md5yy4s] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .quick-actions .mud-button[b-so9md5yy4s] {
        padding: 0.5rem 1rem !important;
        min-height: 44px;
    }
}
/* _content/Grade.Website/Components/Shared/Dashboard/RejectedSubmissionCard.razor.rz.scp.css */
/* Compact Rejected Submission Card Styles */
.rejected-card[b-h5g1xpkvsv] {
    min-width: 336px;
    max-width: 384px;
}

.rejected-submission-card[b-h5g1xpkvsv] {
    background: #fef9f9 !important;
    border: 1px solid #fecaca !important;
    border-left: 4px solid #ef4444 !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    max-height: 130px;
}

.rejected-submission-card:hover[b-h5g1xpkvsv] {
    background: #fef2f2 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.1) !important;
    border-color: #fca5a5 !important;
}

/* Horizontal layout for compact design */
.card-content[b-h5g1xpkvsv] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
    padding-top: 6px;
}

.subject-info-section[b-h5g1xpkvsv] {
    flex: 1;
    min-width: 0; /* Allow text truncation */
    display: flex;
    flex-direction: column;
    gap: 0;
}

.action-section[b-h5g1xpkvsv] {
    flex-shrink: 0;
    align-self: start;
}

/* Compact information styles */
.info-icon[b-h5g1xpkvsv] {
    opacity: 0.6;
    cursor: help;
}

.info-icon:hover[b-h5g1xpkvsv] {
    opacity: 1;
}

/* Compact subject information styles */
.subject-code[b-h5g1xpkvsv] {
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
}

.subject-name[b-h5g1xpkvsv] {
    color: #4b5563 !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 3px 0;
}

/* Compact rejection details */
.rejection-reason[b-h5g1xpkvsv] {
    color: #6b7280 !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 220px;
    font-style: italic;
}

.timestamp[b-h5g1xpkvsv] {
    color: #9ca3af !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    white-space: nowrap;
}

/* Compact action button styles */
.acknowledge-btn[b-h5g1xpkvsv] {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    min-width: 72px;
    height: 34px;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

.acknowledge-btn:hover[b-h5g1xpkvsv] {
    background: rgba(239, 68, 68, 0.05) !important;
    border-color: #dc2626 !important;
    color: #dc2626 !important;
}

.acknowledge-btn:active[b-h5g1xpkvsv] {
    background: rgba(239, 68, 68, 0.1) !important;
}

/* Responsive design for compact cards */
@media (max-width: 768px) {
    .rejected-card[b-h5g1xpkvsv] {
        min-width: 312px;
        max-width: 336px;
    }

    .card-content[b-h5g1xpkvsv] {
        gap: 16px;
    }

    .rejected-submission-card[b-h5g1xpkvsv] {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .rejected-card[b-h5g1xpkvsv] {
        min-width: 288px;
        max-width: 312px;
    }

    .subject-code[b-h5g1xpkvsv] {
        font-size: 15px !important;
    }

    .subject-name[b-h5g1xpkvsv] {
        font-size: 13px !important;
    }

    .rejection-reason[b-h5g1xpkvsv] {
        font-size: 12px !important;
        max-width: 180px;
    }

    .timestamp[b-h5g1xpkvsv] {
        font-size: 12px !important;
    }

    .acknowledge-btn[b-h5g1xpkvsv] {
        font-size: 13px !important;
        min-width: 60px;
        height: 30px;
    }

    .card-content[b-h5g1xpkvsv] {
        gap: 12px;
    }
}

/* Smooth animations */
@keyframes fadeInSlide-b-h5g1xpkvsv {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.rejected-card[b-h5g1xpkvsv] {
    animation: fadeInSlide-b-h5g1xpkvsv 0.2s ease-out;
}

/* Focus states for accessibility */
.rejected-card:focus-within[b-h5g1xpkvsv] {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
    border-radius: 8px;
}

.acknowledge-btn:focus[b-h5g1xpkvsv] {
    outline: 2px solid #ef4444;
    outline-offset: 1px;
}
/* _content/Grade.Website/Components/Shared/Dashboard/ShortcutMenuItem.razor.rz.scp.css */
/* Shortcut Menu Item Styles */
.shortcut-menu-item[b-qwfiho1tg7] {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 140px;
}

.shortcut-menu-item:hover[b-qwfiho1tg7] {
    transform: translateY(-4px);
    text-decoration: none;
}

.shortcut-menu-item[b-qwfiho1tg7]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shortcut-menu-item:hover[b-qwfiho1tg7]::before {
    opacity: 1;
}

.shortcut-menu-content[b-qwfiho1tg7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
    position: relative;
    z-index: 1;
}

.shortcut-icon-container[b-qwfiho1tg7] {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.shortcut-menu-item:hover .shortcut-icon-container[b-qwfiho1tg7] {
    transform: scale(1.1) rotate(5deg);
}

.menu-title[b-qwfiho1tg7] {
    margin-top: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.shortcut-menu-item:hover .menu-title[b-qwfiho1tg7] {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shortcut-menu-item[b-qwfiho1tg7] {
        padding: 1rem;
        min-height: 120px;
    }
    
    .shortcut-icon-container[b-qwfiho1tg7] {
        width: 50px;
        height: 50px;
    }
    
    .shortcut-menu-content[b-qwfiho1tg7] {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .shortcut-menu-item[b-qwfiho1tg7] {
        padding: 0.875rem;
        min-height: 110px;
    }
    
    .shortcut-icon-container[b-qwfiho1tg7] {
        width: 45px;
        height: 45px;
    }
}

/* Clickable variant */
.shortcut-menu-item.clickable[b-qwfiho1tg7] {
    user-select: none;
}

.shortcut-menu-item.clickable:active[b-qwfiho1tg7] {
    transform: scale(0.98);
}

/* Badge positioning */
.badge-container[b-qwfiho1tg7] {
    position: relative;
    display: inline-block;
}

/* Icon styling */
.menu-icon[b-qwfiho1tg7] {
    transition: all 0.3s ease;
}

.shortcut-menu-item:hover .menu-icon[b-qwfiho1tg7] {
    transform: scale(1.1);
}

/* Shimmer effect on hover */
@keyframes shimmer-b-qwfiho1tg7 {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.shortcut-menu-item:hover[b-qwfiho1tg7]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: shimmer-b-qwfiho1tg7 1.5s ease-out;
}
/* _content/Grade.Website/Components/Shared/Lecturer/FillGrade/TimelineCard.razor.rz.scp.css */
/* Timeline Card Styles */
.timeline-card[b-5b6c0jktep] {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-card:hover[b-5b6c0jktep] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}


/* Timeline Stepper */
.fill-grade-timeline[b-5b6c0jktep] {
    margin-top: 0.5rem;
}

/* Stepper Step Customization */
.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step {
    padding: 0.75rem 0;
}

.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step-title {
    font-weight: 500 !important;
    color: #374151 !important;
    font-size: 0.9rem !important;
}

.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step-secondary-text {
    color: #6b7280 !important;
    font-size: 0.8rem !important;
    margin-top: 0.25rem;
}

/* Completed Step Styling */
.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step.mud-stepper-step-completed .mud-stepper-step-title {
    color: #059669 !important;
    font-weight: 600 !important;
}

.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step.mud-stepper-step-completed .mud-stepper-step-icon {
    background-color: #059669 !important;
    border-color: #059669 !important;
}

/* Active Step Styling */
.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step.mud-stepper-step-active .mud-stepper-step-title {
    color: #2563eb !important;
    font-weight: 600 !important;
}

.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step.mud-stepper-step-active .mud-stepper-step-icon {
    background-color: #2563eb !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Error Step Styling */
.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step.mud-stepper-step-error .mud-stepper-step-title {
    color: #dc2626 !important;
    font-weight: 600 !important;
}

.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step.mud-stepper-step-error .mud-stepper-step-icon {
    background-color: #dc2626 !important;
    border-color: #dc2626 !important;
}

.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step.mud-stepper-step-error .mud-stepper-step-secondary-text {
    color: #dc2626 !important;
    font-weight: 500 !important;
}

/* Pending Step Styling */
.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step:not(.mud-stepper-step-completed):not(.mud-stepper-step-active):not(.mud-stepper-step-error) .mud-stepper-step-title {
    color: #9ca3af !important;
}

.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step:not(.mud-stepper-step-completed):not(.mud-stepper-step-active):not(.mud-stepper-step-error) .mud-stepper-step-icon {
    background-color: #f3f4f6 !important;
    border-color: #d1d5db !important;
    color: #9ca3af !important;
}

/* Connector Line Styling */
.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-connector {
    border-color: #d1d5db !important;
}

.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step.mud-stepper-step-completed .mud-stepper-connector {
    border-color: #059669 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-header[b-5b6c0jktep] {
        gap: 0.5rem;
        padding-bottom: 0.75rem;
    }

    .card-icon[b-5b6c0jktep] {
        width: 32px;
        height: 32px;
    }

    .card-title[b-5b6c0jktep] {
        font-size: 1rem !important;
    }

    .fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step-title {
        font-size: 0.85rem !important;
    }

    .fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step-secondary-text {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .timeline-card[b-5b6c0jktep] {
        margin: 0 -0.5rem;
    }

    .card-header[b-5b6c0jktep] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .card-title[b-5b6c0jktep] {
        font-size: 0.9rem !important;
    }
}

/* Animation for step transitions */
.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step-icon {
    transition: all 0.3s ease;
}

.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step-title,
.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step-secondary-text {
    transition: color 0.3s ease;
}

/* Accessibility improvements */
.fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .timeline-card[b-5b6c0jktep] {
        box-shadow: none;
        border: 1px solid #000;
    }

    .fill-grade-timeline[b-5b6c0jktep]  .mud-stepper-step-icon {
        print-color-adjust: exact;
    }
}
