/* ============================================================================
   SETUP PROGRESS WIDGET & USER GUIDANCE
   Styles for onboarding and user guidance components
   ============================================================================ */

.setup-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.setup-step {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.2s;
}

.setup-step.completed {
    background: #d1f4e0;
    border-left: 4px solid #198754;
}

.setup-step.partial {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.setup-step .step-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.setup-step .step-content {
    flex-grow: 1;
}

.setup-step .step-content h6 {
    margin-bottom: 0.25rem;
    color: #212529;
}

.setup-step.completed .step-content h6 {
    color: #198754;
}

.setup-step .step-content p {
    margin-bottom: 0;
}

/* Contextual Help Tooltip */
.help-tooltip {
    display: inline-block;
    margin-left: 0.25rem;
    cursor: help;
    color: #6c757d;
}

.help-tooltip:hover {
    color: #0d6efd;
}

/* Info Card for guidance */
.info-card-guidance {
    background: #e7f1ff;
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
}

.info-card-guidance .icon {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 0.75rem;
}

/* Quick Actions Panel */
.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-action-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.quick-action-card:hover {
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.quick-action-card .icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.quick-action-card h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quick-action-card p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
}
