body {
    padding-bottom: 90px;
}
.navbar .nav-link {
    position: relative;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #198754;
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

/* Dropdown on hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

.red-badge {
    background: #dc3545;
    color: white;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.95em;
}

.yellow-badge {
    background: #ffc107;   /* Bootstrap warning */
    color: #212529;        /* dunkler Text für Lesbarkeit */
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.95em;
}

.green-badge {
    background: #198754;   /* Bootstrap success */
    color: white;          /* weißer Text für gute Lesbarkeit */
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.95em;
}


.sticky-cta-right {
    position: fixed;
    right: 20px;
    top: 100px; /* stabiler Abstand unter Navbar */
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.25s ease;
}

.sticky-cta-right.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Button Look wie Bootstrap */
.sticky-cta-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 0.375rem;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 1300px) {
    .sticky-cta-right {
        display: none;
    }
}

