/* Styles pour les boutons du système de paliers */

/* Bouton de réinitialisation */
.reset-km-btn {
    position: fixed !important;
    bottom: 80px !important;
    right: 20px !important;
    z-index: 9999 !important;
    padding: 10px 15px !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: 2px solid red !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
}

.reset-km-btn:hover {
    background-color: rgba(50, 0, 0, 0.9) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4) !important;
}

/* Bouton d'accélération (pour tests) */
.speedup-btn {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    padding: 10px 15px !important;
    background-color: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    border: 2px solid #ff007a !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
}

.speedup-btn:hover {
    background-color: rgba(50, 0, 50, 0.9) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 0 15px rgba(255, 0, 122, 0.4) !important;
}

/* Pour le mode mobile */
@media (max-width: 768px) {
    .reset-km-btn,
    .speedup-btn {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    
    .reset-km-btn {
        bottom: 70px !important;
    }
    
    .speedup-btn {
        bottom: 20px !important;
    }
}
