/*************************************************
  GLOBAL: Farben, Schrift usw.
**************************************************/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

/* Container: Maximale Breite und Padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px; /* etwas mehr padding als vorher */
}

/*************************************************
  USER INFO BAR
**************************************************/
.user-info-bar {
    background: linear-gradient(to right, #EB008D, #FF4D3C);
    color: #fff;
    /* Vorher height: 50px -> etwas flacher, z.B. 40px: */
    height: 40px;
    display: flex;
    align-items: center;
    /* Padding links/rechts ruhig etwas erhöhen (z.B. 1.5rem) */
    padding: 0 1.5rem;
    /* Falls du die Schrift da drin kleiner möchtest: */
    font-size: 0.9rem;
}

/*************************************************
  NAVBAR
**************************************************/
.navbar {
    background-color: #fff;       
    border-bottom: 2px solid #FF5678; /* Pink Linie unten */
}

/* Weniger fetter Brand-Name: z.B. font-weight: 400 statt extrem fett */
.navbar-brand {
    color: #333 !important;
    text-decoration: none;
    font-weight: 400;
}

.navbar-nav .nav-link {
    /* Vorher font-weight: 500 -> z.B. leichter auf 300 oder 400 setzen */
    font-weight: 300;
    color: #333 !important;
    margin-right: 1rem;
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #FF5678 !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #FF5678;
    transition: width 0.2s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/*************************************************
  BUTTONS (pillenförmig)
**************************************************/
.btn {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 30px; /* Pillenform */
}

/* Haupt-Farbschema Pink/Orange */
.btn-primary {
    border-color: #FF5678 !important;
    background: linear-gradient(to right, #EB008D, #FF4D3C) !important;
}
.btn-primary:hover {
    background: linear-gradient(to right, #FF4D3C, #EB008D) !important;
    border-color: #EB008D !important;
}

.btn-gradient-pink {
    border: none;
    color: #fff;
    background: linear-gradient(to right, #EB008D, #FF4D3C);
    transition: background 0.3s ease;
}
.btn-gradient-pink:hover {
    background: linear-gradient(to right, #FF4D3C, #EB008D);
    text-decoration: none;
}

/*************************************************
  CARD
**************************************************/
.card {
    background-color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.card-body {
    padding: 20px;
}

/*************************************************
  LOGIN-CARD (Optionales Styling)
**************************************************/
.login-card {
    max-width: 400px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.login-card h2 {
    margin-bottom: 20px;
}
.login-card .form-group {
    margin-bottom: 15px;
}

/*************************************************
  FOOTER
**************************************************/
footer a {
    color: #FF5678;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
footer a:hover {
    color: #EB008D;
    text-decoration: underline;
}

/*************************************************
  RESPONSIVE BREAKPOINTS
**************************************************/
@media (max-width: 576px) {
    .header-section {
        padding: 20px;
    }
    .header-section h2 {
        font-size: 1.5rem;
    }
    .progress .progress-bar {
        font-size: 0.9rem;
    }
    .container {
        padding: 14px;
    }
}
