.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cookie-content {
    background-color: white;
    color: #333;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.cookie-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 0.5rem;
}

.cookie-button.primary {
    background-color: #007bff;
    color: white;
}

.cookie-button.secondary {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
}