/* Zusätzliche CSS-Anpassungen für die Anwalts-Website */
/* Tailwind CSS wird über CDN geladen und deckt das meiste ab */

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar (optional, für moderne Browser) */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #8AB82E;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6D9324;
}

/* Fokus-Styles für bessere Accessibility */
*:focus {
    outline: 2px solid #8AB82E;
    outline-offset: 2px;
}

/* Print Styles (optional) */
@media print {
    header,
    footer,
    .no-print {
        display: none;
    }
}
