﻿.sa-selection-grid {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    flex-wrap: nowrap;
}

.sa-selection-card {
    flex: 1;
    min-width: 0;
    height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    border: 2px solid #dbe4f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all .22s ease;
}

.sa-selection-title {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.sa-selection-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(15,23,42,.06);
}

.sa-selection-card.active {
    background: #4f46e5;
    border-color: transparent;
    transform: translateY(-1px);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 8px 18px rgba(99,102,241,.16);
}

    .sa-selection-card.active
    .sa-selection-title,
    .sa-selection-card.active
    .sa-selection-icon {
        color: white;
    }

.sa-selection-icon {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
