.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;
}

/* Floating widget */
#hb-consent-widget {
    display: none;
    position: fixed;
    z-index: 999997;
    bottom: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 20px;
    line-height: 1;
    padding: 0;
}

#hb-consent-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

#hb-consent-widget svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 600px) {
    .hb-consent-inner {
        padding: 16px;
    }
    .hb-consent-actions {
        flex-direction: column;
    }
    .hb-btn {
        width: 100%;
        text-align: center;
    }
    #hb-consent-widget {
        bottom: 12px;
        left: 12px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}