/* Primärbutton */
.button {
    background-color: #C3512F;
    color: #ffffff;
    border: 1px solid #C3512F;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* Hover */
.button:hover {
    background-color: #9C4025;
    border-color: #9C4025;
}

/* Focus (Accessibility) */
.button:focus {
    outline: 2px solid rgba(195, 81, 47, 0.4);
    outline-offset: 2px;
}