#wpcb-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 20px 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    box-sizing: border-box;
}

#wpcb-banner.wpcb-position-bottom {
    bottom: 0;
}

#wpcb-banner.wpcb-position-top {
    top: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.wpcb-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.wpcb-banner-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.wpcb-banner-body {
    flex: 1 1 100%;
}

.wpcb-banner-body p {
    margin: 0;
    color: #555;
}

.wpcb-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.wpcb-btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-align: center;
}

.wpcb-btn-accept {
    background: #2d6a4f;
    color: #fff;
    border-color: #2d6a4f;
}

.wpcb-btn-accept:hover,
.wpcb-btn-accept:focus {
    background: #1b4332;
    border-color: #1b4332;
}

.wpcb-btn-decline {
    background: #d32f2f;
    color: #fff;
    border-color: #d32f2f;
}

.wpcb-btn-decline:hover,
.wpcb-btn-decline:focus {
    background: #b71c1c;
    border-color: #b71c1c;
}

.wpcb-btn-select,
.wpcb-btn-save {
    background: #f5f5f5;
    color: #333;
    border-color: #ccc;
}

.wpcb-btn-select:hover,
.wpcb-btn-select:focus,
.wpcb-btn-save:hover,
.wpcb-btn-save:focus {
    background: #e0e0e0;
    border-color: #999;
}

.wpcb-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    align-items: center;
    justify-content: center;
}

.wpcb-modal.wpcb-modal-open {
    display: flex;
}

.wpcb-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.wpcb-modal-content {
    position: relative;
    background: #fff;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    padding: 28px 32px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.wpcb-modal-header h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.wpcb-modal-body > p {
    color: #555;
    margin: 0 0 20px;
}

.wpcb-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.wpcb-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wpcb-category {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px 16px;
    background: #fafafa;
}

.wpcb-category-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.wpcb-category-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2d6a4f;
}

.wpcb-category-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.wpcb-category-name {
    font-size: 15px;
    color: #222;
}

.wpcb-category-desc {
    margin: 8px 0 0 28px;
    font-size: 13px;
    color: #777;
}

.wpcb-consent-placeholder {
    padding: 20px;
    background: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 6px;
    text-align: center;
    color: #888;
    margin: 16px 0;
}

.wpcb-consent-placeholder p {
    margin: 0 0 12px;
}

.wpcb-reactivate-btn {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    background: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    color: #333;
}

.wpcb-reactivate-btn:hover {
    background: #e0e0e0;
}

.wpcb-reopen-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #2d6a4f;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    transition: background 0.2s, transform 0.2s;
}

.wpcb-reopen-btn:hover {
    background: #1b4332;
    transform: scale(1.1);
}

.wpcb-reopen-btn svg {
    display: block;
}
