/**
 * Wer kann wann? - Custom Stylesheet
 * Bootstrap-free, polished design
 * Primary: #290033, Accent: #8c6eff
 */

/* Google Font: Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #290033;
    --accent-color: #8c6eff;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --light-bg: #896bf91f;
    --white: #ffffff;
    --dark-text: #1f2937;
    --gray-text: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h1 { font-size: 1.875rem; }  /* Reduced from 2.25rem */
h2 { font-size: 1.5rem; }    /* Reduced from 1.875rem */
h3 { font-size: 1.25rem; }   /* Reduced from 1.5rem */
h4 { font-size: 1.125rem; }  /* Reduced from 1.25rem */
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Grid System
   ============================================ */
.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-fluid {
    width: 1440px;
    padding: 0 4rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.col, .col-auto {
    padding: 0 0.75rem;
}

.col {
    flex: 1;
}

.col-auto {
    flex: 0 0 auto;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 0.75rem;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 0.75rem;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0.75rem;
}

.col-md-8 {
    flex: 0 0 66.667%;
    max-width: 66.667%;
    padding: 0 0.75rem;
}

.col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 0.75rem;
}

@media (max-width: 992px) {
    .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ============================================
   Navigation Bar
   ============================================ */
/* ============================================
   Navigation Bar
   ============================================ */
.navbar {
    background: var(--primary-color);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand:hover {
    color: var(--accent-color);
}

.navbar-toggler {
    display: none;
    background: none;
    border: 2px solid var(--border-color);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.navbar-toggler:hover {
    border-color: var(--accent-color);
}

.navbar-toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark-text);
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--dark-text);
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin-left: 2rem;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.navbar-nav.me-auto {
    margin-right: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--white);
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    background: rgba(140, 110, 255, 0.1);
    color: var(--accent-color);
}


.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.7rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 0.5rem 0;
    list-style: none;
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--dark-text);
    transition: var(--transition);
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(140, 110, 255, 0.1);
    color: var(--accent-color);
}

.dropdown-item-text {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--gray-text);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

@media (max-width: 992px) {
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-color);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-collapse.show {
        display: flex;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
    }
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    padding: 2rem 0;
    flex: 1;
}

/* ============================================
   Cards
   ============================================ */
.card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(140, 110, 255, 0.9) 100%);
    color: var(--white);
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background: var(--light-bg);
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border-color);
}

.card-footer.bg-white {
    background: var(--white);
}

.card-img-top {
    width: 100%;
    height: auto;
    display: block;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.card-text {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.h-100 {
    height: 100%;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.5;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(140, 110, 255, 0.95) 100%);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(41, 0, 51, 0.9) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.btn-secondary {
    background: var(--gray-text);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--dark-text);
    color: var(--white);
}

.btn-success {
    background: var(--success-color);
    color: var(--white);
}

.btn-success:hover {
    background: #059669;
    color: var(--white);
}

.btn-danger {
    background: var(--danger-color);
    color: var(--white);
}

.btn-danger:hover {
    background: #dc2626;
    color: var(--white);
}

.btn-warning {
    background: var(--warning-color);
    color: var(--white);
}

.btn-warning:hover {
    background: #d97706;
    color: var(--white);
}

.btn-info {
    background: var(--info-color);
    color: var(--white);
}

.btn-info:hover {
    background: #2563eb;
    color: var(--white);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1.125rem;
    border-radius: 10px;
}

.w-100 {
    width: 100%;
}

.btn-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-text);
    padding: 0.25rem;
    line-height: 1;
    transition: var(--transition);
}

.btn-close:hover {
    color: var(--dark-text);
}

.btn-close::before {
    content: '×';
}

/* ============================================
   Forms
   ============================================ */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-control,
.form-select {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--dark-text);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(140, 110, 255, 0.1);
}

.form-control::placeholder {
    color: var(--gray-text);
    opacity: 0.6;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-text {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.875rem;
    color: var(--gray-text);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.form-check-label {
    cursor: pointer;
    user-select: none;
}

.mb-3 {
    margin-bottom: 1rem;
}

.d-grid {
    display: grid;
}

.gap-2 {
    gap: 0.5rem;
}

/* ============================================
   Tables
   ============================================ */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(140, 110, 255, 0.9) 100%);
    color: var(--white);
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.5px;
}

.table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.table tbody tr:last-child {
    border-bottom: none;
}

.table tbody td {
    padding: 1rem;
}

.table-hover tbody tr:hover {
    background: rgba(140, 110, 255, 0.05);
}

.table-sm tbody td {
    padding: 0.5rem;
}

.table-sm thead th {
    padding: 0.5rem;
}

/* ============================================
   Badges
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 6px;
    white-space: nowrap;
}

.bg-primary {
    background: var(--primary-color);
    color: var(--white);
}

.bg-secondary {
    background: var(--gray-text);
    color: var(--white);
}

.bg-success {
    background: var(--success-color);
    color: var(--white);
}

.bg-danger {
    background: var(--danger-color);
    color: var(--white);
}

.bg-warning {
    background: var(--warning-color);
    color: var(--white);
}

.bg-info {
    background: var(--info-color);
    color: var(--white);
}

.badge-response-yes {
    background: var(--success-color);
    color: var(--white);
}

.badge-response-limited {
    background: var(--warning-color);
    color: var(--white);
}

.badge-response-fallback {
    background: var(--info-color);
    color: var(--white);
}

.badge-response-no {
    background: var(--danger-color);
    color: var(--white);
}

/* ============================================
   Alerts
   ============================================ */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-success {
    background: #d1fae5;
    border-color: #6ee7b7;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #991b1b;
}

.alert-warning {
    background: #fef3c7;
    border-color: #fcd34d;
    color: #92400e;
}

.alert-info {
    background: #dbeafe;
    border-color: #93c5fd;
    color: #1e40af;
}

/* ============================================
   Modals
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-dialog {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

.modal-dialog.modal-lg {
    max-width: 900px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--dark-text);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* ============================================
   Login Page
   ============================================ */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 1rem;
}

.login-card {
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    border: none;
}

.login-card .card-body {
    padding: 2.5rem;
}

.login-card .card-header {
    background: transparent;
    color: var(--primary-color);
    border: none;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo h1 {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.login-logo h2 {
    color: var(--dark-text);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   Dashboard
   ============================================ */
.dashboard-stat {
    text-align: center;
    padding: 2rem 1.5rem;
}

.dashboard-stat .stat-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-stat .stat-label {
    font-size: 0.9375rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ============================================
   Event Components
   ============================================ */
.event-banner {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.event-day-card {
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.event-day-card:hover {
    border-left-color: var(--primary-color);
}

.event-day-card.invisible {
    opacity: 0.5;
    border-left-color: var(--gray-text);
}

.shift-item {
    border-left: 4px solid var(--info-color);
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.shift-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.shift-item .shift-time {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.shift-item .shift-coverage {
    font-size: 0.9375rem;
    color: var(--gray-text);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-top: auto;
    text-align: center;
    color: var(--gray-text);
    font-size: 0.9375rem;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.text-muted {
    color: var(--gray-text) !important;
}

.text-small {
    font-size: 0.875rem;
}

.small {
    font-size: 0.875rem;
}

.text-decoration-none {
    text-decoration: none;
}

.d-flex {
    display: flex;
}

.d-block {
    display: block;
}

.d-inline {
    display: inline;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}

/* ============================================
   List Groups
   ============================================ */
.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--dark-text);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: var(--transition);
}

.list-group-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.list-group-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.list-group-item + .list-group-item {
    border-top-width: 0;
}

.list-group-item-action {
    cursor: pointer;
}

.list-group-item-action:hover {
    background-color: rgba(140, 110, 255, 0.05);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.list-group-flush .list-group-item:first-child {
    border-top: 0;
}

.list-group-flush .list-group-item:last-child {
    border-bottom: 0;
}

.float-end {
    float: right;
}

/* ============================================
   Icons (Bootstrap Icons compatibility)
   ============================================ */
[class^="bi-"], [class*=" bi-"] {
    display: inline-block;
    font-size: 1.2em;
    vertical-align: middle;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .main-content {
        padding: 1rem 0;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .table {
        font-size: 0.875rem;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .dashboard-stat .stat-value {
        font-size: 2rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .footer,
    .btn,
    .alert,
    .modal {
        display: none !important;
    }
    
    .main-content {
        padding: 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #000;
        page-break-inside: avoid;
    }
    
    body {
        background: var(--white);
    }
}

/*
 * Dark Mode Overrides
 *
 * Wenn das System oder der Browser auf „dunkel“ eingestellt ist (prefers-color-scheme: dark),
 * werden diese Variablen angewendet. Sie sorgen für bessere Lesbarkeit und Kontrast.
 */
@media (prefers-color-scheme: dark) {
    :root {
        /* Hintergründe */
        --light-bg: #1d2233; /* Grundfläche (Seitenhintergrund) */
        --white: #262c3f;   /* Karten und Container */
        /* Schriftfarben */
        --dark-text: #f5f5f5; /* Primäre Schriftfarbe */
        --gray-text: #b0b6c3; /* Sekundäre Schriftfarbe */
        /* Rahmen und Linien */
        --border-color: #3f4561;
        /* Optional: Passe Primär- und Akzentfarbe leicht an, damit sie sich besser vom dunklen Hintergrund abheben */
        --primary-color: #8c6eff;
        --accent-color: #290033;
        /* Statusfarben können bei Bedarf ebenfalls angepasst werden */
        /* --success-color: #10b981; */
        /* --danger-color: #ef4444; */
        /* --warning-color: #f59e0b; */
        /* --info-color: #3b82f6; */
    }
.nav-link {
    color: #e0e0e0; /* heller Text */
    background-color: rgba(255,255,255,0.05);
  }

  .nav-link:hover {
    background-color: rgba(255,255,255,0.15);
  }

}
