/* Стандартний стан чекбоксу */
.checkbox-field input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 0px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
    padding: 8px;
}

/* Hover */
.checkbox-field input[type="checkbox"]:hover {
    border-color: #00B6E6;
}

/* Checked — фон білий, рамка блакитна */
.checkbox-field input[type="checkbox"]:checked {
    background: #fff;
    border-color: #00B6E6;
}

/* Синя точка всередині */
.checkbox-field input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #00B6E6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Стилі посилання */
.checkbox-field a {
    color: #00B6E6;
    text-decoration: underline;
    transition: color 0.2s;
    font-size: 14px;
}

.checkbox-field a:hover {
    color: #008bb5;
}

/* Контейнер */
.checkbox-field {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.contact-option input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 0px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s;
    padding: 8px;
}

/* Hover на сам чекбокс */
.contact-option input[type="checkbox"]:hover {
    border-color: #00B6E6;
}

/* Checked — фон білий, рамка блакитна, точка блакитна */
.contact-option input[type="checkbox"]:checked {
    background: #fff;
    border-color: #00B6E6;
}

.contact-option input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #00B6E6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}