#simple-modal-close {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #fff;
    font-size: 1.25rem; /* 20px */
    cursor: pointer;
}

#simple-modal-close:hover {
    color: #fff;
}

#simple-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#simple-modal-box {
    background-color: #333;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px #000;
    position: relative;
    max-width: 600px;
    max-height: 90vh;
    overflow: auto;
    color: #fff;
    font-size: 0.9375rem; /* 15px */
}

.modal-bio-wrapper {
    display: flex;
    flex-direction: row;
    background-color: #333;
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    max-height: 350px;
    max-width: 800px;
    overflow: hidden;
    gap: 20px;
    box-sizing: border-box;
}

.modal-bio-image img {
    height: 300px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.modal-bio-text {
    flex-grow: 1;
    color: #ddd;
    font-weight: 600;
    overflow-y: auto;
    max-height: 300px;
    max-width: 300px;
    padding: 5px;
    scrollbar-width: none;
    /* Firefox */
}

.modal-bio-text::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.modal-bio-text h2 {
    color: #eee !important;
    font-weight: 700;
    font-size: 1.25rem; /* 20px */
    margin: 0 0 10px;
}

.modal-bio-text h3 {
    color: #eee !important;
    font-weight: 900;
    font-size: 1.5rem; /* 24px */
    margin: 0 0 10px;
}
