/* Styles pour les boutons d'icône dans les cartes véhicules */
.btn-icon {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.375rem;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--text-secondary);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.btn-icon:active {
    transform: scale(0.95);
}

/* Menu de statut */
.status-menu {
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive pour les actions de la carte véhicule */
@media (max-width: 768px) {
    .vehicle-card-actions {
        gap: 0.125rem !important;
    }
    
    .btn-icon {
        padding: 0.375rem;
    }
    
    .btn-icon svg {
        width: 14px;
        height: 14px;
    }
}
