.custom-consent {
    font-size: 14px;
    color: #000;
    margin-top: 15px;
    margin-bottom: 10px;
}

.custom-consent > div {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.custom-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.custom-consent input[type="checkbox"]:checked {
    border-color: #28a745;
    background-color: #28a745;
}

.custom-consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-consent label {
    margin: 0;
    color: #000;
    cursor: pointer;
}

.custom-consent a {
    text-decoration: underline;
    color: #000;
}

.checkbox-error {
    border-color: red !important;
    box-shadow: 0 0 3px red;
}
