.custom-checkbox input[type="checkbox"] {
display: none;
} .custom-checkbox span {
display: inline-block;
width: 20px;
height: 20px;
border: 2px solid #8B4513; border-radius: 50%; margin-right: 10px;
cursor: pointer;
transition: background-color 0.3s ease, border-color 0.3s ease;
} .custom-checkbox input[type="checkbox"]:checked + span {
background-color: #D2B48C; border-color: #A0522D; } .custom-checkbox span:hover {
border-color: #A0522D; } .custom-checkbox {
display: flex;
align-items: center;
font-size: 14px;
font-family: Arial, sans-serif;
color: #333;
}