@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

#custom-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #aaaaaa;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#custom-loader h2 {
    color: #495057;
    margin-bottom: 2rem;
}

#custom-loader .pulse-bar {
    width: 300px;
    height: 40px;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    border-radius: 5px;
    animation: pulse 1.5s ease-in-out infinite;

    /* Text vertikal zentrieren */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Text-Styling */
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
}