﻿.option-group {
    margin-bottom: 24px;
}

.option-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.option-card {
    flex: 1;
    min-width: 120px;
    min-height: 60px;
    border: 1px solid #D8DCE6;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: .2s;
    background-color: white;
}

    .option-card:hover {
        border-color: #2E8B57;
    }

    .option-card.selected {
        border: 2px solid #2E8B57;
        background: #F4FBF5;
    }

.option-icon {
    color: #2E8B57;
    font-size: 28px;
}

.option-text {
    color: #19346E;
    font-weight: 600;
    text-align: center;
}
