.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.overlayContent {
    background-color: #f6f6f6bc;
    padding: 0 20px 20px 20px;
    width: 90%;
    max-width: 300px;
    text-align: left;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.closeButton {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
}

.profileContainer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
}

.profile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

.profile img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.profileText {
    flex: 1;
}

.profile h3 {
    margin: 0 0 5px;
}

.profile p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.openButton {
    background: none;
    border: none;
    outline: none;
}