.privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-notice .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.privacy-notice-text {
    flex: 1;
    min-width: 280px;
}

.privacy-notice-buttons {
    display: flex;
    gap: 0.5rem;
}

.privacy-notice-buttons button {
    min-width: 120px;
}

@media (max-width: 768px) {
    .privacy-notice .container {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-notice-buttons {
        width: 100%;
        justify-content: center;
    }
} 