.pace {
    -webkit-pointer-events: none;
    pointer-events: none;

    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #29d;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 3px;
}

/* Smooth transitions für Pace Progress */
.pace .pace-progress {
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

/* Roter Zustand */
.pace.pace-red .pace-progress {
    background: linear-gradient(to right, #ed5565, #da4453) !important;
    box-shadow: 0 0 10px rgba(237, 85, 101, 0.7) !important;
    animation: pulse-red 1s infinite alternate;
}

@keyframes pulse-red {
    from {
        box-shadow: 0 0 10px rgba(237, 85, 101, 0.7);
    }
    to {
        box-shadow: 0 0 15px rgba(237, 85, 101, 0.9);
    }
}
