.review-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-popup-content {
    background: var(--wp--preset--color--background-primary);
    padding: 0 20px 20px 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.review-popup-title {
    background-color: var(--wp--preset--color--background-secondary);
    width: calc(100% + 40px);
    text-align: center;
}

.review-popup-title h4 {
    color: var(--wp--preset--color--font-primary);
    padding: 20px 0;
    width: 100%;
    margin: auto;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    font-weight: 600;
    cursor: pointer;
    color: var(--wp--preset--color--font-primary);
}

.leave-review-button {
    margin-top: 10px;
    padding: 5px 20px;
}

#review-status {
    margin-top: 10px;
    color: green;
}

#review-form .form-submit .button {
    width: 100%;
}

#rating {
    width: 100%;
    padding: 5px 10px;
}


.star-rating {
    font-size: 2em;
    color: #ccc;
    cursor: pointer;
  }
  
  .star {
    display: inline-block;
    transition: color 0.2s;
  }
  
  .star.hovered,
  .star.selected {
    color: #f5b301;
  }