/* MCU-GET Global Styles */

:root {
    --mcu-green: #065F46;
    --emerald-glass: rgba(255, 255, 255, 0.7);
}

body {
    background-color: #F8FAFC;
    color: #1F2937;
}

.container-custom {
    max-width: 1180px;
    margin: 0 auto;
}

.content-card {
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.number-font {
    font-family: 'Inter', sans-serif;
}

/* Slider Pagination Dots */
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.3);
}

/* FAQ Accordion Transition */
details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

details[open] summary~* {
    animation: sweep .5s ease-in-out;
}

@keyframes sweep {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Hover Effects */
.hvr-float {
    transition: transform 0.3s ease-out, shadow 0.3s ease-out;
}

.hvr-float:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Responsive Table Enhancements */
.overflow-x-auto {
    scrollbar-width: thin;
    scrollbar-color: #065F46 #f1f5f9;
}

.overflow-x-auto::-webkit-scrollbar {
    height: 4px;
}

.overflow-x-auto::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.overflow-x-auto::-webkit-scrollbar-thumb {
    background-color: #065F46;
    border-radius: 10px;
}

@media (max-width: 640px) {
    .overflow-x-auto {
        border-radius: 8px;
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.02);
    }

    table {
        min-width: 600px;
        /* Force scroll on very narrow screens for legibility */
    }

    .text-sm-mobile {
        font-size: 0.75rem !important;
        /* text-xs */
    }
}

/* Mobile Alignment Fixes */
@media (max-width: 768px) {
    .container-custom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}