/* Bootstrap Primary Override */
:root {
    --bs-primary: #ffc838;
    --bs-primary-rgb: 255, 200, 56;
    --bs-link-color: #ffc838;
    --bs-link-hover-color: #e0ad2f;
}

.btn-primary,
.bg-primary {
    background-color: #ffc838 !important;
    border-color: #ffc838 !important;
    color: #000;
}

.btn-primary:hover {
    background-color: #ffd45c !important;
    border-color: #e6b200 !important;
    color: #000;
}

.btn-primary:active,
.btn-primary:focus {
    background-color: #e6b200 !important;
    border-color: #d4a100 !important;
    color: #000;
}

/* Navbar text on yellow */
.navbar.bg-primary .navbar-brand,
.navbar.bg-primary .nav-link {
    color: #000 !important;
}

.navbar.bg-primary .nav-link:hover,
.navbar.bg-primary .nav-link:focus {
    color: #000 !important;
    text-decoration: underline;
}

/* Custom Styles für EKP/E-Nummern Eingabefelder */

/* EKP Input Container */
.ekp-input-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ekp-prefix {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

.ekp-separator {
    font-size: 1rem;
    font-weight: 500;
}

/* N Input Container */
.n-input-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.n-prefix {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Login-Seite: Zentrierung */
.row.justify-content-center {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

/* Responsive Anpassungen für kleine Bildschirme */
@media (max-width: 576px) {
    .ekp-input-container,
    .n-input-container {
        flex-wrap: wrap;
    }
    
    .ekp-prefix,
    .n-prefix {
        width: 100%;
    }
}
