/* PusztaPlay CRM Manager — GDPR Banner CSS */
.pp-gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-top: 3px solid #e94560;
    padding: 20px;
    z-index: 999999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease-out;
}

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

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

.pp-gdpr-text {
    color: #a8a8a8;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 300px;
}

.pp-gdpr-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.pp-gdpr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.pp-gdpr-accept {
    background: #e94560;
    color: #fff;
}
.pp-gdpr-accept:hover { background: #c73e54; }

.pp-gdpr-settings {
    background: transparent;
    color: #a8a8a8;
    border: 1px solid #555;
}
.pp-gdpr-settings:hover { border-color: #e94560; color: #fff; }

.pp-gdpr-reject {
    background: transparent;
    color: #888;
    border: 1px solid #444;
}
.pp-gdpr-reject:hover { border-color: #888; color: #fff; }

.pp-gdpr-link {
    color: #e94560;
    text-decoration: none;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
}
.pp-gdpr-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .pp-gdpr-content { flex-direction: column; text-align: center; }
    .pp-gdpr-buttons { justify-content: center; }
}
