/* TimePollr - Gemeinsame Styles */

/* Font */
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; }

/* Glass Effect */
.glass-effect { backdrop-filter: blur(10px); background: rgba(255,255,255,0.9); }

/* Loading Overlay & Spinner */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: #F9FAFB;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #E5E7EB;
    border-top-color: #7E52ED;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Animations */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .loading-spinner, .spinner { animation-duration: 0s; }
    .animate-float { animation: none; }
}
