/* Sistema de Menu de Ações - VERSÃO SIMPLES */
.action-menu-wrapper {
    position: relative !important;
    display: inline-block !important;
}

.action-menu-trigger {
    background-color: #6c757d !important;
    color: white !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 6px 10px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    height: 36px !important;
    transition: background-color 0.2s ease !important;
}

.action-menu-trigger:hover {
    background-color: #5a6268 !important;
}

.action-menu-trigger i {
    font-size: 16px !important;
}

.action-menu-dropdown {
    position: fixed !important;
    background: white !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    z-index: 999999 !important;
    min-width: 120px !important;
    padding: 8px !important;
    display: none !important;
    flex-direction: row !important;
    gap: 6px !important;
    align-items: center !important;
}

.action-menu-dropdown.show {
    display: flex !important;
}

.action-menu-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border: 2px solid transparent !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    color: inherit !important;
    background: transparent !important;
    margin: 0 !important;
}

.action-menu-item:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
}

.action-menu-item i {
    font-size: 16px !important;
}

/* Cores dos botões */
.action-menu-item.edit {
    color: #007bff !important;
    border-color: #007bff !important;
}

.action-menu-item.edit:hover {
    background-color: #007bff !important;
    color: white !important;
}

.action-menu-item.view {
    color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

.action-menu-item.view:hover {
    background-color: #17a2b8 !important;
    color: white !important;
}

.action-menu-item.success {
    color: #28a745 !important;
    border-color: #28a745 !important;
}

.action-menu-item.success:hover {
    background-color: #28a745 !important;
    color: white !important;
}

.action-menu-item.warning {
    color: #ffc107 !important;
    border-color: #ffc107 !important;
}

.action-menu-item.warning:hover {
    background-color: #ffc107 !important;
    color: white !important;
}

.action-menu-item.secondary {
    color: #6c757d !important;
    border-color: #6c757d !important;
}

.action-menu-item.secondary:hover {
    background-color: #6c757d !important;
    color: white !important;
}

.action-menu-item.dark {
    color: #343a40 !important;
    border-color: #343a40 !important;
}

.action-menu-item.dark:hover {
    background-color: #343a40 !important;
    color: white !important;
}

.action-menu-item.delete {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.action-menu-item.delete:hover {
    background-color: #dc3545 !important;
    color: white !important;
}

.action-menu-item.danger {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.action-menu-item.danger:hover {
    background-color: #dc3545 !important;
    color: white !important;
}
