/* Styles pour les icônes crayon de modification des menus - Style Odoo */
.cart-edit-menu-btn {
    background: #ffffff;
    border: 1px solid #7c7bad;
    border-radius: 3px;
    padding: 4px 6px;
    color: #7c7bad;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    margin-left: 4px;
    text-decoration: none;
    box-shadow: none;
    font-weight: normal;
}

/* Règles de très haute spécificité pour forcer la couleur violette */
span.cart-edit-menu-btn,
span.cart-edit-menu-btn:hover,
span.cart-edit-menu-btn:focus,
span.cart-edit-menu-btn:active {
    background: #ffffff !important;
    border-color: #7c7bad !important;
    color: #7c7bad !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    text-decoration: none !important;
}

/* Cibler spécifiquement l'icône avec une spécificité très élevée */
span.cart-edit-menu-btn i,
span.cart-edit-menu-btn:hover i,
span.cart-edit-menu-btn:focus i,
span.cart-edit-menu-btn:active i,
span.cart-edit-menu-btn i.fa,
span.cart-edit-menu-btn:hover i.fa,
span.cart-edit-menu-btn:focus i.fa,
span.cart-edit-menu-btn:active i.fa,
span.cart-edit-menu-btn i.fa-pencil,
span.cart-edit-menu-btn:hover i.fa-pencil,
span.cart-edit-menu-btn:focus i.fa-pencil,
span.cart-edit-menu-btn:active i.fa-pencil {
    color: #7c7bad !important;
    background: transparent !important;
    border: none !important;
    text-decoration: none !important;
    font-size: 10px !important;
    line-height: 1 !important;
}

/* Empêcher tous les effets de couleur Bootstrap */
span.cart-edit-menu-btn.text-primary,
span.cart-edit-menu-btn.text-info,
span.cart-edit-menu-btn.text-blue,
span.cart-edit-menu-btn:hover.text-primary,
span.cart-edit-menu-btn:hover.text-info,
span.cart-edit-menu-btn:hover.text-blue,
span.cart-edit-menu-btn i.text-primary,
span.cart-edit-menu-btn i.text-info,
span.cart-edit-menu-btn i.text-blue,
span.cart-edit-menu-btn:hover i.text-primary,
span.cart-edit-menu-btn:hover i.text-info,
span.cart-edit-menu-btn:hover i.text-blue {
    color: #7c7bad !important;
}

/* État actif uniquement */
span.cart-edit-menu-btn:active {
    background: #6b6a9c !important;
    border-color: #6b6a9c !important;
    color: #ffffff !important;
}

span.cart-edit-menu-btn:active i,
span.cart-edit-menu-btn:active i.fa,
span.cart-edit-menu-btn:active i.fa-pencil {
    color: #ffffff !important;
}

/* Style spécifique pour les menus du jour - garder le style Odoo standard */
.o_cart_product span.cart-edit-menu-btn {
    background: #ffffff !important;
    border-color: #7c7bad !important;
    color: #7c7bad !important;
    font-weight: normal !important;
}

/* Animation d'apparition - plus subtile */
span.cart-edit-menu-btn {
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    span.cart-edit-menu-btn {
        padding: 5px 7px !important;
        min-width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }
    
    span.cart-edit-menu-btn i {
        font-size: 11px !important;
    }
} 