.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay__content {
    display: flex;
    background: white;
    flex-direction: row;
    padding: 40px 90px 40px 40px;
    gap: 3rem;
    border-radius: 0.5rem;
    max-width: 95vw;
    max-height: 90vh;
    overflow: auto;
}