/* ============================================
   QUICK ACTIONS COMPONENT - DARK THEME (Redesigned)
   Modern action buttons matching Figma
   ============================================ */

/* Quick Actions Section */
[data-theme="dark"] .quick-actions {
    margin-bottom: var(--space-6);
}

[data-theme="dark"] .quick-actions-header {
    margin-bottom: 20px;
}

[data-theme="dark"] .quick-actions-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Quick Actions Grid */
[data-theme="dark"] .quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* Action Button Card */
[data-theme="dark"] .quick-action-btn {
    background: rgba(30, 35, 58, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-slow);
    min-height: auto;
    text-align: center;
}

[data-theme="dark"] .quick-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.12);
    text-decoration: none;
}

/* Action Icon - Larger rounded box */
[data-theme="dark"] .quick-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 0;
    transition: transform var(--transition-base);
}

[data-theme="dark"] .quick-action-btn:hover .quick-action-icon {
    transform: scale(1.05);
}

/* Icon gradient backgrounds */
[data-theme="dark"] .quick-action-icon.gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
}

[data-theme="dark"] .quick-action-icon.gradient-purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    color: #ffffff;
}

[data-theme="dark"] .quick-action-icon.gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
}

[data-theme="dark"] .quick-action-icon.gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

/* Action Text */
[data-theme="dark"] .quick-action-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Disabled state (for UI-only buttons) */
[data-theme="dark"] .quick-action-btn.disabled {
    opacity: 1;
    cursor: default;
}

[data-theme="dark"] .quick-action-btn.disabled:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    [data-theme="dark"] .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    [data-theme="dark"] .quick-actions-grid {
        grid-template-columns: 1fr;
    }
}