  /* Shared Backdrop */
  #lat-post-review-modal-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  /* Common modal container styles */
  #lat-post-review-modal,
  #lat-post-review-thank-you-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 464px; max-width: 90%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 1000;
    overflow: hidden;
  }

  /* Close Button */
  .lat-post-review-header,
  .lat-post-review-thank-you-content {
    display: flex; justify-content: flex-end;
    padding: 12px 16px;
  }
  .lat-post-review-modal-close {
    background: none; border: none;
    font-size: 24px; cursor: pointer;
  }

  /* Post-Review Body */
  .lat-post-review-body {
    padding: 0 24px 24px;
    text-align: center;
  }
  .lat-post-review-avatar {
    width: 64px; height: 64px;
    border-radius: 4px;
    border: 1px solid #1211170F;
    margin-bottom: 16px;
  }
  .lat-post-review-title {
    margin: 0; font-size: 24px; font-weight: 600; color: #121117;
  }
  .lat-post-review-subtitle {
    margin: 4px 0 16px;
    color: #121117; font-size: 16px;
    font-weight: 300;
  }

  #lat-post-review-text-area {
    width: 100%; height: 100px; padding: 8px;
    font-size: 14px; border: 1px solid #ddd;
    border-radius: 8px; resize: none;
    margin-bottom: 20px;
  }

  #lat-post-review-primary-btn:hover {
    background: rgba(255, 88, 60, 1) !important;
  }
  #lat-post-review-primary-btn {
    width: 100%; 
    font-size: 18px; font-weight: 600;
    background: #FF2500; color: #fff;
    border: 2px solid #121117; border-radius: 8px;
    cursor: pointer;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Thank-You Content */
  .lat-post-review-thank-you-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .lat-post-review-thank-you-content h2 {
    margin: 0; font-size: 22px; font-weight: 600;
  }
  .lat-post-review-thank-you-content p {
    margin: 8px 0 0; font-size: 14px; color: #555;
  }
