.wp-consent-banner {
    position: fixed;
    z-index: 999999;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.wp-consent-position-bottom {
    bottom: 0;
}

.wp-consent-position-top {
    top: 0;
}

.wp-consent-position-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .wp-consent-banner:not(.wp-consent-position-center) {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.wp-consent-content {
    flex: 1;
}

.wp-consent-banner h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.wp-consent-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.wp-consent-text p {
    margin: 0;
}

.wp-consent-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wp-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: opacity 0.2s;
}

.wp-consent-btn:hover {
    opacity: 0.8;
}

/* Floating reconfigure button */
.wp-consent-reconfigure-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999998;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    background-color: #fff;
}

.wp-consent-reconfigure-btn:hover {
    transform: scale(1.1);
}
