.container {
    max-width: 1150px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

.has-badge {
    position: relative;
}

.has-badge::before {
    content: "Neu";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    color: #FFF;
    font-family: D-DIN-PRO;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    border-radius: 4px;
    background: #367EB7;
    width: 44px;
    height: 19px;
    display: flex;
    justify-content: center;
    margin: 10px 0 0 10px;
}

[id^="list-view"] .has-badge::before {
    margin: 0px;
    top: 50%;
    align-self: center;
    right: 0;
    left: unset;
    transform: translate(130%, -50%);
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

li {
    margin-bottom: 10px; /* Vertical space for small screens */
}

.fade-out {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.fade-out.hidden {
    opacity: 0;
}
.login-btn {
    margin-bottom: 10px;
}
.credentials-error {
    margin-top: 8px;
    color: red;
}

@media (min-width: 768px) {
    li {
        margin-bottom: 0; /* Remove vertical space for larger screens */
        margin-right: 20px; /* Space between items in larger screens */
    }
}
