/* Privacy Policy Checkbox Styles */
.privacy-policy-checkbox {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
    background-color: #f8f9fa;
    clear: both;
}

.privacy-policy-checkbox input[type="checkbox"] {
    margin-right: 10px;
    vertical-align: middle;
}

.privacy-policy-checkbox label {
    display: inline;
    font-size: 14px;
    vertical-align: middle;
    margin-bottom: 0;
    cursor: pointer;
}

.privacy-policy-checkbox label a {
    color: #007bff;
    text-decoration: underline;
}

.privacy-policy-checkbox label a:hover {
    text-decoration: none;
}

.privacy-error {
    font-size: 12px;
    margin-top: 5px;
    color: #dc3545;
    display: none;
}

/* Add this class to any form that should include privacy checkbox */
form.needs-privacy-check {
    position: relative;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    z-index: 9999;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-accept-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

.cookie-accept-btn:hover {
    background: #0056b3;
}
