/* Card Components */

.stat-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 90px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-card.highlight {
    background: rgba(34, 197, 94, 0.1);
    /* Primary Low Opacity */
    border-color: var(--primary-glow);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
}

.stat-card.highlight .stat-value {
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Action Cards */
.action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.action-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
    transition: transform 0.2s ease, background 0.2s;
}

.action-card:active {
    transform: scale(0.96);
}

.action-card.primary {
    background: linear-gradient(135deg, var(--primary), #16a34a);
    box-shadow: 0 4px 15px var(--primary-glow);
    border: none;
    font-weight: 600;
}

.action-card.secondary {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
}

.action-icon {
    font-size: 1.8rem;
}