#color-prediction-form {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.color-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 2px solid #005bbb; /* колір рамки кола */
    margin: 10px;
}

.color-circle span {
    margin-top: 5px;
    text-align: center;
}

.selected {
    border-width: 5px; /* збільште ширину рамки для відзначення обраного коліру */
}

[data-color="none"] {
    background-color: #fff; /* білий колір для "Не було кольору" */
}

[data-color="red"] {
    background-color: #ff0000; /* червоний колір для "Червоний колір" */
    color: #fff; /* білий колір тексту для виділення */
}

[data-color="black"] {
    background-color: #000; /* чорний колір для "Чорний колір" */
    color: #fff; /* білий колір тексту для виділення */
}

#color-prediction-result {
    margin-top: 20px;
    text-align: center;
    color: white;
}

#color-prediction-result > div {
    width: 100px; /* Задайте ширину відповідно до вашого дизайну */
    height: 100px; /* Задайте висоту відповідно до вашого дизайну */
    border-radius: 50%;
    margin: 0 auto;
}

.dealer-cards  {
    text-align: center;
}

.dealer-cards img {
    cursor:pointer;
    margin: 5px;
}