/* Estilos para DashboardActions Component */
.dashboard-actions {
    background: var(--rz-surface-1);
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid var(--rz-border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-actions .rz-button {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-actions .rz-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dashboard-actions .rz-button:active {
    transform: translateY(0);
}

/* AI Chat Button Special Styling */
.dashboard-actions .rz-button-success {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
}

.dashboard-actions .rz-button-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

/* Refresh Button */
.dashboard-actions .rz-button-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border: none;
}

.dashboard-actions .rz-button-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* Export Button */
.dashboard-actions .rz-button-secondary {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    border: none;
}

.dashboard-actions .rz-button-secondary:hover {
    background: linear-gradient(135deg, #4b5563, #374151);
}

/* Fullscreen Button */
.dashboard-actions .rz-button-light {
    background: var(--rz-surface-0);
    border: 1px solid var(--rz-border-color);
    color: var(--rz-text-color);
}

.dashboard-actions .rz-button-light:hover {
    background: var(--rz-surface-2);
    border-color: var(--rz-primary);
}

/* Split Button Special Styling */
.dashboard-actions .rz-splitbutton {
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-actions .rz-splitbutton .rz-button {
    border-radius: 0;
}

.dashboard-actions .rz-splitbutton .rz-button:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.dashboard-actions .rz-splitbutton .rz-button:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Loading State */
.dashboard-actions .rz-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Button Icons */
.dashboard-actions .rz-button .rz-button-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-actions {
        padding: 0.5rem;
    }
    
    .dashboard-actions .rz-button {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .dashboard-actions .rz-button .rz-button-text {
        display: none;
    }
    
    .dashboard-actions .rz-button .rz-button-icon {
        margin-right: 0;
    }
}

/* Animation for action feedback */
.dashboard-actions .rz-button.action-feedback {
    animation: actionPulse 0.3s ease-out;
}

@keyframes actionPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
} 