#cookie-consent-dialog {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-consent-content {
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-consent-content p {
    margin: 0;
    flex: 1;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-consent-button {
    background-color: #2196F3;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-consent-button:hover {
    background-color: #1976D2;
}

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