.btn-primary {
    background-color: #9164ff !important;
    border-color: #6f42c1 !important;
}

.bg-primary {
    background-color: #9164ff !important;
}
@font-face {
    font-family: 'Inter';
    src: url('/static/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900; /* Variable Gewichtsbreite */
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
}
/* Allgemeine Link-Stile */
a {
    color: #9164ff; /* Lila Link-Farbe */
    text-decoration: none; /* Entfernt die Unterstreichung */
    transition: color 0.2s ease-in-out; /* Sanfter Farbwechsel */
}

/* Link-Hover-Effekt */
a:hover {
    color: #6f42c1; /* Dunkleres Lila beim Überfahren */
    text-decoration: underline; /* Zeigt Unterstreichung beim Hover */
}

/* Link-Fokus (für Tastaturnavigation) */
a:focus {
    outline: 2px solid #6f42c1; /* Fokusrahmen in dunklem Lila */
    outline-offset: 2px;
}
