/* Notifications */
.wp-gdpr-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: none;
    animation: slideIn 0.4s ease;
}

.wp-gdpr-notification-success {
    background-color: #4CAF50;
}

.wp-gdpr-notification-error {
    background-color: #f44336;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading state */
.wp-gdpr-btn.loading {
    position: relative;
    color: transparent !important;
}

.wp-gdpr-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* Close button for banner */
.wp-gdpr-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.wp-gdpr-close-btn:hover {
    opacity: 1;
}

/* Update banner position classes */
.wp-gdpr-position-top .wp-gdpr-close-btn {
    top: 15px;
    right: 15px;
}

.wp-gdpr-position-bottom .wp-gdpr-close-btn {
    top: 15px;
    right: 15px;
}