/**
 * Steuer-Check Rechner - Frontend Styles
 */

/* Allgemeine Styles */
.steuer-check-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.5;
}

/* Formular-Elemente */
.steuer-check-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0ea5e9;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.steuer-check-container input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0ea5e9;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(14, 165, 233, 0); }
    100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Anpassungen */
@media (max-width: 640px) {
    .steuer-check-container h2 {
        font-size: 1.5rem;
    }
    
    .steuer-check-container h3 {
        font-size: 1.25rem;
    }
    
    .steuer-check-container .scr-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Dunkles Theme */
.steuer-check-container[data-theme="dark"] {
    color: #f3f4f6;
}

.steuer-check-container[data-theme="dark"] input[type="range"]::-webkit-slider-thumb {
    background: #0ea5e9;
    border-color: #1f2937;
}

.steuer-check-container[data-theme="dark"] input[type="range"]::-moz-range-thumb {
    background: #0ea5e9;
    border-color: #1f2937;
}

/* Print Styles */
@media print {
    .steuer-check-container {
        background: white !important;
        color: black !important;
    }
    
    .steuer-check-container .scr-btn,
    .steuer-check-container button {
        display: none !important;
    }
    
    .steuer-check-container .scr-container {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        padding: 1rem !important;
    }
} 