.lgdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.lgdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.lgdpr-logo {
    max-height: 40px;
    width: auto;
}

.lgdpr-message {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    min-width: 250px;
}

.lgdpr-link {
    color: inherit;
    text-decoration: underline;
    margin-left: 5px;
}

.lgdpr-accept {
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .lgdpr-content {
        flex-direction: column;
        text-align: center;
    }
    
    .lgdpr-accept {
        width: 100%;
    }
}