/* GDPR Cookie Consent Banner */

.admind-gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999998;
    animation: slideUp 0.5s ease;
}

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

.admind-gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admind-gdpr-text {
    flex: 1;
}

.admind-gdpr-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
}

.admind-gdpr-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.admind-gdpr-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.admind-gdpr-accept {
    background: #10b981;
    color: white;
}

.admind-gdpr-accept:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.admind-gdpr-reject {
    background: #64748b;
    color: white;
}

.admind-gdpr-reject:hover {
    background: #475569;
}

.admind-gdpr-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.admind-gdpr-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .admind-gdpr-content {
        flex-direction: column;
        text-align: center;
    }

    .admind-gdpr-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .admind-gdpr-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Hidden state */
.admind-gdpr-banner.admind-hidden {
    display: none !important;
}

/* Fade out animation */
.admind-gdpr-banner.admind-fadeout {
    animation: fadeOut 0.5s ease;
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}
