/* Additional animations and styles */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced slide image display */
.slide img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    /* Ensure high quality image rendering */
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: bicubic;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* 3D Transform Animations */
@keyframes tilt3d {
    0% { transform: perspective(1000px) rotateX(0deg) rotateY(0deg); }
    25% { transform: perspective(1000px) rotateX(5deg) rotateY(5deg); }
    50% { transform: perspective(1000px) rotateX(0deg) rotateY(0deg); }
    75% { transform: perspective(1000px) rotateX(-5deg) rotateY(-5deg); }
    100% { transform: perspective(1000px) rotateX(0deg) rotateY(0deg); }
}

.tilt-3d {
    transform-style: preserve-3d;
    animation: tilt3d 8s infinite ease-in-out;
}

@keyframes rotate3d {
    0% { transform: perspective(1000px) rotateY(0deg); }
    100% { transform: perspective(1000px) rotateY(360deg); }
}

.rotate-3d {
    transform-style: preserve-3d;
    animation: rotate3d 20s infinite linear;
}

/* Depth effect for cards */
.depth-card {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.depth-card:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* 3D Button Effects */
.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #7a008e;
}

.btn-3d:hover {
    transform: translateY(-2px) translateZ(10px);
    box-shadow: 0 6px 0 #7a008e;
}

.btn-3d:active {
    transform: translateY(4px) translateZ(0);
    box-shadow: 0 0px 0 #7a008e;
}

/* 3D Icon Effects */
.icon-3d {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.icon-3d:hover {
    transform: translateZ(20px) scale(1.1);
    filter: drop-shadow(0 10px 15px rgba(151, 0, 168, 0.3));
}

/* Floating 3D Cards */
.floating-card {
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(151, 0, 168, 0.25);
}

/* 3D Progress Bar */
.progress-3d {
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(151, 0, 168, 0.2);
}

.progress-3d:hover {
    transform: scale(1.02) translateZ(10px);
    box-shadow: 0 8px 20px rgba(151, 0, 168, 0.3);
}

/* 3D Chart Containers */
.chart-3d {
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.chart-3d:hover {
    transform: translateY(-5px) translateZ(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Glowing Effect */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(151, 0, 168, 0.2), transparent);
    transition: 0.5s;
}

.glow-effect:hover::before {
    left: 100%;
}

/* New login page animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounceIn 0.8s ease-out forwards;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-bg {
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Card hover effects */
.course-card {
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Enhanced hover card effect */
.course-card .absolute {
    transition: transform 0.3s ease;
    z-index: 20;
}

.course-card:hover .absolute {
    transform: translatey(0);
}

/* Button animations */
.btn-animate {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-animate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-animate:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-animate:focus:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Card hover effects */
.course-card {
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 30;
}

/* Button animations */
.btn-animate {
    position: relative;
    overflow: hidden;
}

.btn-animate:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-animate:focus:after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Mobile menu styles */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Mobile-specific styles for login pages */
@media (max-width: 640px) {
    /* Login page container adjustments */
    .login-container {
        padding: 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    /* Adjust card padding for mobile */
    .login-card {
        padding: 1.5rem;
        margin: 0.5rem;
    }
    
    /* Adjust form elements for mobile */
    .login-form input {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    /* Adjust button sizes for mobile */
    .login-button {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    /* Adjust icon sizes for mobile */
    .login-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
    
    /* Adjust heading sizes for mobile */
    .login-heading {
        font-size: 1.5rem;
    }
    
    /* Adjust subheading sizes for mobile */
    .login-subheading {
        font-size: 0.875rem;
    }
    
    /* Stack role selection cards vertically on mobile */
    .role-selection-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Adjust card padding for mobile role selection */
    .role-card {
        padding: 1rem;
    }
    
    /* Adjust role card content for mobile */
    .role-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Center role icon on mobile */
    .role-icon-mobile {
        margin: 0 auto 1rem auto;
    }
    
    /* Remove left margin on mobile */
    .role-text-mobile {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    /* Adjust form spacing for mobile */
    .form-spacing {
        margin-bottom: 1rem;
    }
    
    /* Adjust remember me and forgot password layout for mobile */
    .remember-forgot-mobile {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Adjust back link padding for mobile */
    .back-link-mobile {
        padding: 0.5rem;
    }
    
    /* Mobile enhancements for slides */
    .slide h2 {
        font-size: 2rem;
        line-height: 1.2;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .slide p {
        font-size: 1.125rem;
        line-height: 1.4;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    }
    
    .slide a, .slide button {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Specific mobile enhancements for login pages */
@media (max-width: 480px) {
    /* Further reduce padding on very small screens */
    .login-card {
        padding: 1rem;
    }
    
    /* Reduce heading sizes even more */
    .login-heading {
        font-size: 1.25rem;
    }
    
    /* Reduce subheading sizes */
    .login-subheading {
        font-size: 0.75rem;
    }
    
    /* Adjust button padding */
    .login-button {
        padding: 0.625rem;
    }
    
    /* Adjust input padding */
    .login-input {
        padding: 0.625rem;
    }
    
    /* Stack form elements more compactly */
    .form-compact {
        gap: 0.75rem;
    }
    
    /* Further mobile enhancements for slides */
    .slide h2 {
        font-size: 1.75rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    .slide a, .slide button {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }
}

/* Enhanced login page animations */
.login-page-enter {
    animation: fadeIn 0.5s ease-out;
}

.login-card-enter {
    animation: bounceIn 0.8s ease-out;
}

.login-icon-enter {
    animation: slideInLeft 0.5s ease-out;
}

.login-heading-enter {
    animation: slideInRight 0.6s ease-out;
}

.login-subheading-enter {
    animation: slideInRight 0.7s ease-out;
}

.role-card-enter {
    animation: fadeInUp 0.6s ease-out;
}

.role-card:nth-child(1) {
    animation-delay: 0.1s;
}

.role-card:nth-child(2) {
    animation-delay: 0.3s;
}

.role-card:nth-child(3) {
    animation-delay: 0.5s;
}

.form-element-enter {
    animation: fadeInUp 0.5s ease-out;
}

.form-element-enter:nth-child(1) {
    animation-delay: 0.1s;
}

.form-element-enter:nth-child(2) {
    animation-delay: 0.2s;
}

.form-element-enter:nth-child(3) {
    animation-delay: 0.3s;
}

.button-enter {
    animation: bounceIn 0.6s ease-out;
}

.button-enter:nth-child(1) {
    animation-delay: 0.4s;
}

.button-enter:nth-child(2) {
    animation-delay: 0.5s;
}

/* Responsive grid for larger screens */
@media (min-width: 641px) {
    .role-selection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Compact notification design */
#notification-container {
    padding: 0.75rem 1rem;
}

#notification-slider p {
    margin: 0;
    line-height: 1.4;
}

/* Features carousel styles for mobile */
#features-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.feature-indicator {
    transition: all 0.3s ease;
}

/* Compact feature cards for mobile */
@media (max-width: 767px) {
    .feature-card-compact {
        padding: 1rem;
    }
    
    .feature-icon-compact {
        width: 3rem;
        height: 3rem;
    }
    
    .feature-icon-compact i {
        font-size: 1.25rem;
    }
    
    .feature-title-compact {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-desc-compact {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    /* Smaller indicators */
    .feature-indicator {
        width: 0.5rem;
        height: 0.5rem;
    }
}

/* Notification slider styles - pause on hover/touch */
#notification-container:hover #notification-slider {
    animation-play-state: paused;
}

/* Touch device support for pausing */
@media (hover: none) {
    #notification-container:active #notification-slider {
        animation-play-state: paused;
    }
}

/* Custom CSS for EduLearn */

/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
}

/* Header styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Hero section slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Notification bar */
#notification-container {
    background-color: #f0e6f5;
    border-left-color: #9700A8;
    color: #5d006d;
}

/* Dots for slideshow */
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
    background-color: #9700A8;
}

/* Course cards - Enhanced 3D Flip Effect */
.course-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
    perspective: 1000px;
    border-radius: 16px;
}

.course-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(8deg) scale(1.03);
    box-shadow: 0 20px 45px rgba(151, 0, 168, 0.22);
    border-color: #cbd5e0;
    z-index: 30;
}

/* Enhanced hover card effect with proper visibility */
.course-card .absolute {
    transition: transform 0.3s ease;
    z-index: 20;
    transform: translateZ(0);
}

.course-card:hover .absolute {
    transform: translateY(0) translateZ(30px);
}

/* 3D Service Cards */
.service-3d-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-3d-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg) scale(1.03);
    box-shadow: 0 20px 40px rgba(151, 0, 168, 0.2);
}

.service-3d-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(151, 0, 168, 0.3), transparent);
    transition: 0.7s;
    z-index: 10;
    border-radius: 16px;
}

.service-3d-card:hover::before {
    left: 100%;
}

/* Features section */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Buttons */
.btn-animate {
    transition: all 0.3s ease;
}

.btn-animate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(151, 0, 168, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Footer */
footer {
    background-color: #1e293b;
}

/* Slide content organization */
.slide-content {
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 3; /* Ensure content is above images */
}

.slide-content.center {
    align-items: center;
    text-align: center;
}

.slide-content.center .slide-title,
.slide-content.center .slide-description,
.slide-content.center .slide-button {
    margin-left: auto;
    margin-right: auto;
}

.slide-content.right {
    align-items: flex-end;
    text-align: right;
}

.slide-content.right .slide-title,
.slide-content.right .slide-description,
.slide-content.right .slide-button {
    margin-left: auto;
}

/* Additional slide positioning utilities */
.slide-content.position-top {
    justify-content: flex-start;
    padding-top: 5rem;
}

.slide-content.position-bottom {
    justify-content: flex-end;
    padding-bottom: 5rem;
}

.slide-content.position-center {
    justify-content: center;
}

/* Responsive adjustments for slide content */
@media (max-width: 768px) {
    .slide-content {
        padding: 0 1rem;
        align-items: center;
        text-align: center;
    }
    
    .slide-content.right,
    .slide-content.left {
        align-items: center;
        text-align: center;
    }
    
    .slide-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .slide-description {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Positioning controls in admin */
.position-btn {
    transition: all 0.2s ease-in-out;
}

.position-btn:hover:not(.bg-blue-500) {
    transform: translateY(-2px);
}

.position-btn.bg-blue-500 {
    box-shadow: 0 4px 6px rgba(151, 0, 168, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Admin Dashboard Specific Styles - Enhanced Premium Design */
.admin-dashboard-header {
    background: linear-gradient(135deg, #9700A8 0%, #7a008e 100%);
    color: white;
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 30px rgba(151, 0, 168, 0.15);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.admin-dashboard-header:hover {
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 0 15px 35px rgba(151, 0, 168, 0.2);
}

.admin-dashboard-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.admin-dashboard-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Premium Stats cards */
.stat-card {
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left-width: 4px;
    border-left-color: #9700A8;
    transform-style: preserve-3d;
    perspective: 1000px;
    padding: 1rem;
}

.stat-card:hover {
    transform: translateY(-8px) translateZ(10px);
    box-shadow: 0 15px 35px rgba(151, 0, 168, 0.15);
}

.stat-card .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0e6f5;
    color: #9700A8;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) translateZ(20px);
}

.stat-card p {
    font-size: 0.85rem;
    margin: 0.25rem 0;
}

.stat-card .text-2xl {
    font-size: 1.5rem;
}

/* Premium Management cards */
.management-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    transform-style: preserve-3d;
    perspective: 1000px;
    padding: 1rem;
}

.management-card:hover {
    transform: translateY(-5px) translateZ(15px);
    box-shadow: 0 15px 35px rgba(151, 0, 168, 0.12);
    border-color: #cbd5e0;
}

.management-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0e6f5;
    color: #9700A8;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.management-card:hover .card-icon {
    transform: scale(1.15) translateZ(20px);
}

.management-card h3 {
    font-size: 0.95rem;
}

/* Premium Activity items */
.activity-item {
    transition: all 0.3s ease;
    border-radius: 12px;
    transform-style: preserve-3d;
    perspective: 1000px;
    padding: 0.75rem;
}

.activity-item:hover {
    background-color: #f8fafc;
    border-color: #cbd5e0;
    transform: translateY(-3px) translateZ(5px);
}

.activity-item .activity-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0e6f5;
    color: #9700A8;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.activity-item:hover .activity-icon {
    transform: scale(1.1) translateZ(10px);
}

.activity-item p {
    font-size: 0.875rem;
}

/* Premium Quick Action Cards */
.quick-action-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 1rem;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.quick-action-card:hover {
    transform: translateY(-5px) translateZ(10px);
    box-shadow: 0 10px 25px rgba(151, 0, 168, 0.1);
}

.quick-action-card .action-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0e6f5;
    color: #9700A8;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.quick-action-card:hover .action-icon {
    transform: scale(1.15) translateZ(15px);
}

.quick-action-card h3 {
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* Premium Chart Containers */
.chart-container-premium {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.25rem;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chart-container-premium:hover {
    transform: translateY(-5px) translateZ(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.chart-container-premium h2 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Premium Table Styles */
.admin-table-premium {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.admin-table-premium th {
    background-color: #f8fafc;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #334155;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.85rem;
}

.admin-table-premium td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.875rem;
}

.admin-table-premium tr:last-child td {
    border-bottom: none;
}

.admin-table-premium tr:hover {
    background-color: #f8fafc;
}

/* Premium Buttons */
.btn-premium {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(151, 0, 168, 0.2);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    overflow: hidden;
}

.btn-premium:hover {
    transform: translateY(-3px) translateZ(10px);
    box-shadow: 0 8px 25px rgba(151, 0, 168, 0.3);
}

.btn-premium:active {
    transform: translateY(1px) translateZ(0);
    box-shadow: 0 2px 10px rgba(151, 0, 168, 0.15);
}

.btn-premium i {
    margin-right: 0.5rem;
}

/* Premium Input Fields */
.input-premium {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
}

.input-premium:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(151, 0, 168, 0.2);
    border-color: #9700A8;
    outline: none;
}

/* Premium Card Effects */
.card-premium {
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 1.25rem;
}

.card-premium:hover {
    transform: translateY(-10px) translateZ(20px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Premium Icon Effects */
.icon-premium {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    transform: translateZ(0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-premium:hover {
    transform: translateZ(20px) scale(1.15);
    filter: drop-shadow(0 10px 15px rgba(151, 0, 168, 0.3));
}
