/* Schmidt Elektrotechnik — Custom CSS */

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

/* Fokus-Ring für Barrierefreiheit */
*:focus-visible {
    outline: 2px solid #F5C400;
    outline-offset: 2px;
}

/* Prose-Stile für Impressum/Datenschutz */
.prose h2 { color: #0D2B6B; font-weight: 700; font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p  { color: #4B5563; line-height: 1.7; margin-bottom: 1rem; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { color: #4B5563; margin-bottom: 0.25rem; }
.prose a  { color: #0D2B6B; text-decoration: underline; }

/* Zeiterfassung Buttons */
.btn-kommen {
    background: #16a34a;
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background 0.2s;
}
.btn-kommen:hover { background: #15803d; }

.btn-gehen {
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: background 0.2s;
}
.btn-gehen:hover { background: #b91c1c; }
