/* ========================================
   ACCIONES MASIVAS - ÓRDENES DE TRABAJO
   ======================================== */

.acciones-masivas {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.acciones-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.acciones-info i {
    font-size: 1.25rem;
}

.acciones-botones {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.acciones-botones .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: 2px solid white;
}

.acciones-botones .btn-success {
    background: #10b981;
    color: white;
}

.acciones-botones .btn-success:hover {
    background: #059669;
}

.acciones-botones .btn-warning {
    background: #f59e0b;
    color: white;
}

.acciones-botones .btn-warning:hover {
    background: #d97706;
}

.acciones-botones .btn-danger {
    background: #ef4444;
    color: white;
}

.acciones-botones .btn-danger:hover {
    background: #dc2626;
}

.acciones-botones .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.acciones-botones .btn-outline:hover {
    background: white;
    color: #6366f1;
}

/* Checkbox de selección */
.data-table input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #6366f1;
}

.data-table thead input[type="checkbox"] {
    transform: scale(1.1);
}

tr.selected {
    background: rgba(99, 102, 241, 0.1) !important;
}

tr.selected:hover {
    background: rgba(99, 102, 241, 0.15) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .acciones-masivas {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .acciones-botones {
        width: 100%;
    }

    .acciones-botones .btn {
        flex: 1;
        min-width: auto;
    }
}