/* ============================================
   ACTION BUTTON GROUP - Pilule Allongée
   ============================================ */

.btn-group-actions {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 50px;
    background: white;
    padding: 0.3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.btn-group-actions .action-btn {
    box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0.5rem 0.8rem !important;
    font-size: 0.8rem !important;
    position: relative;
}

/* Premier bouton - arrondi à gauche */
.btn-group-actions .action-btn:first-child {
    border-radius: 50px 0 0 50px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

/* Dernier bouton - arrondi à droite */
.btn-group-actions .action-btn:last-child {
    border-radius: 0 50px 50px 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* Boutons du milieu */
.btn-group-actions .action-btn:not(:first-child):not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* Remove shadow on individual buttons in group */
.btn-group-actions .action-btn:hover:not(:disabled) {
    box-shadow: none !important;
}

/* ============================================
   COULEUR ORANGE POUR ÉDITION
   ============================================ */

.action-btn-orange {
    background: linear-gradient(135deg, #ff8c42 0%, #ff7422 100%) !important;
    color: white !important;
}

.action-btn-orange:hover:not(:disabled) {
    box-shadow: 0 2px 6px rgba(255, 140, 66, 0.3) !important;
}

/* ============================================
   RESPONSIVE BUTTON GROUP
   ============================================ */

@media (max-width: 768px) {
    .btn-group-actions {
        padding: 0.25rem;
    }

    .btn-group-actions .action-btn {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.75rem !important;
    }
}
