/* Titan GDPR Banner CSS */
.titan-gdpr-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Mobile first */
    gap: 15px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

@media (min-width: 768px) {
    .titan-gdpr-banner {
        flex-direction: row;
        align-items: center;
        width: auto;
        min-width: 500px;
    }
}

.titan-gdpr-content h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.titan-gdpr-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.titan-gdpr-link {
    color: #007bff;
    text-decoration: none;
}

.titan-gdpr-actions {
    display: flex;
    gap: 10px;
    min-width: 200px;
    justify-content: flex-end;
}

.titan-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.titan-btn-primary {
    background: #000;
    color: #fff;
}

.titan-btn-primary:hover {
    background: #333;
}

.titan-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.titan-btn-secondary:hover {
    background: #e0e0e0;
}