/* UI Core Stylesheet - Shared CSS classes and overrides */

/* Override native dropdown select options background/color on systems that ignore Tailwind background classes */
select option {
    background-color: #1e293b !important;
    color: #ffffff !important;
}

/* Common Keyframe Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Progress and Toast Bars */
.progress-bar {
    background: linear-gradient(90deg, #10b981, #3b82f6);
}

.toast-bar {
    height: 100%;
    width: 100%;
    border-radius: inherit;
    transition: width 5s linear;
}

/* Glassmorphism utility styles */
.glass-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
