/* GDPR Banner Styles */
.xixs-gdpr-banner {
    position: fixed;
    bottom: -100px; /* Start hidden below the screen */
    left: 0;
    right: 0;
    background-color: var(--xixs-gdpr-bg, #222222);
    color: var(--xixs-gdpr-text, #ffffff);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999999;
    transition: bottom 0.4s ease-in-out;
    visibility: hidden;
    font-family: inherit;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 16px;
}

.xixs-gdpr-banner.xixs-gdpr-show {
    bottom: 0;
    visibility: visible;
}

.xixs-gdpr-content {
    flex: 1 1 300px;
}

.xixs-gdpr-message {
    line-height: 1.5;
    margin: 0;
}

.xixs-gdpr-policy-link {
    color: var(--xixs-gdpr-link, #4bd3d6);
    text-decoration: underline;
    margin-left: 4px;
}

.xixs-gdpr-policy-link:hover {
    color: var(--xixs-gdpr-text, #ffffff);
    text-decoration: none;
}

.xixs-gdpr-actions {
    flex-shrink: 0;
}

.xixs-gdpr-btn {
    background-color: var(--xixs-gdpr-btn-bg, #4bd3d6);
    color: var(--xixs-gdpr-btn-text, #ffffff);
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.xixs-gdpr-btn:hover {
    filter: brightness(0.9);
}

.xixs-gdpr-btn:active {
    transform: scale(0.98);
}

.xixs-gdpr-btn-reject {
    background-color: transparent;
    color: var(--xixs-gdpr-text, #ffffff);
    border: 1px solid var(--xixs-gdpr-text, #ffffff);
    margin-right: 8px;
}

.xixs-gdpr-btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
    filter: none;
}

@media (max-width: 600px) {
    .xixs-gdpr-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .xixs-gdpr-content {
        flex: none;
        margin-bottom: 20px;
    }
    
    .xixs-gdpr-actions {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .xixs-gdpr-btn {
        width: 100%;
    }

    .xixs-gdpr-btn-reject {
        margin-right: 0;
        margin-bottom: 0;
    }
}
