.pattern-radio-group{
    display: flex;
    gap: 16px;
}
.pattern-radio-group>label{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    max-width: 80px;
    text-align: center;
    font-size: 10px;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: white;
    transition: background 0.2s ease;
    line-height: 1.2;
}
.pattern-radio-group label .pattern-img{
    width: 50px;
    height: 50px;
    border-radius: 100%;
}
.pattern-radio-group label:hover{
    background: #00A8B922;
}
label.pattern-selected{
    outline: 2px solid #00A8B9;
}
