.hb-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
}

.hb-consent-text h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.hb-consent-text p {
    margin: 0 0 16px;
}

.hb-consent-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hb-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.hb-btn:hover {
    opacity: 0.85;
}

.hb-btn-primary {
    /* Colors set inline from settings */
}

.hb-btn-secondary {
    background: transparent;
    /* Border & text colors set inline from settings */
    border-width: 1px;
    border-style: solid;
}

.hb-consent-categories {
    margin: 16px 0;
}

.hb-consent-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.hb-consent-category label {
    cursor: pointer;
}

.hb-consent-category input[disabled] + label {
    opacity: 0.5;
}

@media (max-width: 600px) {
    .hb-consent-inner {
        padding: 16px;
    }
    .hb-consent-actions {
        flex-direction: column;
    }
    .hb-btn {
        width: 100%;
        text-align: center;
    }
}