/* QEC Portal Custom Styles */
/* Add your custom CSS overrides here */

/* Custom padding override */
.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
}

/* Page transitions */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3D315B;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #524175;
}
