html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.btn.btn-primary {
    background-color: #c8a26d;
    color: #1a1410;
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Hover */
.btn.btn-primary:hover {
    background-color: #b8925c;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Klick */
.btn.btn-primary:active {
    background-color: #9f7b48;
    transform: scale(0.97);
}

/* Fokus (z.B. Tastatur oder nach Klick) */
.btn.btn-primary:focus {
    background-color: #d4b384;
    outline: none;
}

/* Deaktiviert */
.btn.btn-primary:disabled {
    background-color: #e2d3bd;
    color: #6b5a46;
    cursor: not-allowed;
}
