#reviewModal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    padding: 20px;
}
#reviewModal .modal-content {
    max-width: 800px;
    width: 100%;
    background: #fff;
    color: #000;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    padding: 18px;
}
#reviewModalClose {
    position: absolute;
    right: 10px;
    top: 10px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

/* make taps more reliable on mobile for the read-more elements */
.read-more-review {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}
a.read-more-review {
    color: #FFF;
    text-decoration: none;
}
