/* Digitale Schießkladde - Stylesheet & Print Layout */

:root {
    --primary-blue: #2563eb;
    --primary-hover: #1d4ed8;
    --bg-dark: #0f172a;
    --card-dark: #1e293b;
    --border-dark: #334155;
}

/* Touch-Optimierung für Tablets & Handhelds */
button, input, select, .touch-target {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

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

.animate-fade-in {
    animation: fadeIn 0.2s ease-out forwards;
}

/* Chip Buttons */
.chip-btn {
    transition: all 0.15s ease-in-out;
}
.chip-btn:active {
    transform: scale(0.97);
}
.chip-btn.active {
    background-color: #2563eb !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}

/* Modal Backdrop */
.modal-backdrop {
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
}
