
    .RMR {
      display: flex;
      position: absolute;
      top: 0;
      left: 0;
      height: 60px;
      width: auto;
      top: 15px;
      left: 15px;
      z-index: 1001;
      box-sizing: content-box !important;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
            overflow-x: hidden;

    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
      background: #91dcff;
      color: #000;
      min-height: 100vh;
          overflow-x: hidden;
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 1.5rem;
      position: relative;
      z-index: 100;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .speech-bubble {
      background: #fff;
      border: 3px solid #000;
      border-radius: 25px;
      padding: 0.7rem 1.5rem;
      position: relative;
      font-weight: 600;
      font-size: 1.1rem;
      box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .speech-bubble::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 30px;
      width: 20px;
      height: 20px;
      background: #fff;
      border-right: 3px solid #000;
      border-bottom: 3px solid #000;
      transform: rotate(45deg);
      box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .menu-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .menu-btn span {
      display: block;
      width: 30px;
      height: 3px;
      background: #000;
      margin: 5px 0;
      transition: 0.3s;
    }

    /* Social Media Icons */
    .social_media_icon_div {
      position: absolute;
      width: 50px;
      height: 50px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      animation: float 3s ease-in-out infinite;
      transition: transform 0.3s ease;
      z-index: 50;
      text-decoration: none; /* Remove link underline */
    }

    .social_media_icon_div:hover {
      transform: scale(1.1) rotate(5deg);
    }

    .social_media_icon {
      width: 35px;
      height: 35px;
      font-size: 24px;
      color: white;
    }

    .bigger_social_media_icon {
      width: 40px !important;
      height: 40px !important;
    }

    .social_media_icon_div.instagram_logo {
      background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    }

    .social_media_icon_div.x_logo {
      background: #000000;
    }

    .social_media_icon_div.facebook_logo {
         background: #006cf8;
    }

    .social_media_icon_div.reddit_logo {
      background: #FF4500;
    }

    .social_media_icon_div.snapchat_logo {
      background: #fffc00;
    }

    .social_media_icon_div.tiktok_logo {
      background: #000000;
    }

    .white-logo {
         filter: brightness(0) invert(1);
      color: white !important;
    }

    /* Positioning */

     .top-right,
      .top-left {
      top: 110px;
      animation: float-middle 3s ease-in-out infinite;
    }

    .top-left {
      left: 10px;
      animation-delay: 0s;
    }

    .top-right {
      right: 10px;
      animation-delay: 0.5s;
    }

     .middle-left,
     .middle-right {
      top: 290px;
      animation: float-middle 3s ease-in-out infinite;
    }

    .middle-left {
      left: 10px;
      animation-delay: 1s;
    }

    .middle-right {
      right: 10px;
      animation-delay: 1.5s;
    }

     .bottom-left,
     .bottom-right {
      bottom: 140px;
      animation: float-middle 3s ease-in-out infinite;
    }

    .bottom-left {
      left: 10px;
      animation-delay: 2s;
    }

    .bottom-right {
      right: 10px;
      animation-delay: 2.5s;
    }

    @keyframes float {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes float-middle {
      0%,
      100% {
        transform: translateY(-50%);
      }
      50% {
        transform: translateY(calc(-50% - 10px));
      }
    }

    /* Main Content - UPDATED WITH FIXES */
    .main-content {
      text-align: center;
      padding: 1rem 0rem;
      max-width: 600px;
      margin: 0 auto;
      position: relative;
      align-items: center;
      flex-direction: column;
      display: flex;
      justify-content: center;
      z-index: 10;
      width: 100%; /* ADDED: Explicit width */
      overflow-x: hidden; /* ADDED: Prevent horizontal overflow */
    }

    .coming-soon-badge {
      display: inline-block;
      background: #fffc00;
      color: #000;
      padding: 0.5rem 1rem 16px;
      border-radius: 25px;
      font-weight: 700;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      animation: pulse 2s ease-in-out infinite;
      transition: transform 0.2s ease;
      cursor: pointer;
      user-select: none;
    }

    .coming-soon-badge:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    @keyframes pulse {
      0%,
      100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    .main-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      padding: 0rem 2rem;
      line-height: 1.2;
    }

    .description {
         font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
    width: 80%;
    padding: 0rem 2rem;
    }

    /* Email Signup */
    .phone-section {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 20px;
      padding: 1.5rem;
      margin: 1rem 0;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .phone-form {
      display: flex;
      flex-direction: column;
      gap: 5px;
      max-width: 400px;
      margin: 0 auto;
    }

    /* Constant glow effect for the phone input */
    .phone-input {
      padding: 1rem;
      border: 2px solid #ddd;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
          margin-bottom: 1rem;
      /* Add constant glow effect */
      box-shadow: 0 0 15px rgba(24, 119, 242, 0.3);
    }

    .phone-input:focus {
      outline: none;
      border-color: #1877f2;
      /* Stronger glow on focus */
      box-shadow: 0 0 25px rgba(24, 119, 242, 0.5);
    }

    /* Flashing glow animation */
    @keyframes flashGlow {
      0% {
        box-shadow: 0 0 15px rgba(24, 119, 242, 0.3);
      }
      25% {
        box-shadow: 0 0 30px rgba(24, 119, 242, 0.8), 
                    0 0 45px rgba(24, 119, 242, 0.6);
      }
      50% {
        box-shadow: 0 0 40px rgba(24, 119, 242, 1), 
                    0 0 60px rgba(24, 119, 242, 0.8);
      }
      75% {
        box-shadow: 0 0 30px rgba(24, 119, 242, 0.8), 
                    0 0 45px rgba(24, 119, 242, 0.6);
      }
      100% {
        box-shadow: 0 0 15px rgba(24, 119, 242, 0.3);
      }
    }

    /* Class to apply flashing glow */
    .phone-input.flash-glow {
      animation: flashGlow 1.5s ease-in-out;
    }

    .submit-btn {
      background: #000;
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 10px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }

    .submit-btn:hover {
      background: #333;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Share Page Button Styles */
    .share-page-section {
      margin: 1.5rem 0;
      text-align: center;
    }

    .share-page-btn {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      border: none;
      padding: 0.8rem 1.5rem;
      border-radius: 25px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .share-page-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
      background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    }

    .share-page-btn:active {
      transform: translateY(0);
    }

    .share-page-btn i {
      font-size: 1.1rem;
    }

    /* Profile Preview - UPDATED WITH FIXES */
    .profile-preview {
      position: relative;
      width: 100%; /* ADDED: Constrain width */
      max-width: 100%; /* ADDED: Ensure it doesn't exceed parent */
      overflow-x: hidden; /* ADDED: Prevent horizontal overflow */
    }

    .profile-card {
      background: white;
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      max-width: 400px;
      margin: 0 auto;
      text-align: left;
    }

    .profile-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .profile-pic {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(45deg, #f09433, #bc1888);
    }

    .profile-info h3 {
      font-size: 1.2rem;
      margin-bottom: 0.2rem;
    }

    .rating {
      display: flex;
      gap: 0.2rem;
    }

    .star {
      color: #ffd700;
      font-size: 1.2rem;
    }

    .profile-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
    }

.button0 {
        width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    font-weight: 600;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 0.3s;
    overflow: hidden;
    position: relative;
}

    /* Social Media Footer */
    .social-footer {
      padding: 3rem 2rem 2rem;
      position: relative;
      z-index: 10;
    }

    .footer-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-title {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 2rem;
      color: #333;
    }

    .social-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      align-items: center;
      justify-items: center;
    }

    .social-link-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      min-width: 220px;
      text-decoration: none;
      color: inherit;
    }

    .social-link-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .footer-social-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .username {
      font-weight: 600;
      font-size: 1rem;
      color: #333;
    }

    .footer-social-icon.facebook_logo {
       background: #006cf8;
    }

    .footer-social-icon.reddit_logo {
      background: #FF4500;
    }

    .footer-social-icon.instagram_logo {
      background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    }

    .footer-social-icon.x_logo {
      background: #000000;
    }

    .footer-social-icon.snapchat_logo {
      background: #fffc00;
    }

    .footer-social-icon.tiktok_logo {
      background: #000000;
    }

    /* Fun Elements */
    .emoji-float {
      position: absolute;
      bottom: 0;
      font-size: 2rem;
      animation: emoji-float 10s linear infinite;
      pointer-events: none;
    }

    @keyframes emoji-float {
      0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
      }
    }

    /* SUCCESS POPUP - FIXED TO START HIDDEN */
    .success-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      background: white;
      padding: 1rem;
      border-radius: 20px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: all 0.3s ease;
      z-index: 1000;
      width: 90%;
      max-width: 400px;
      /* ADDED: These properties ensure it starts completely hidden */
      opacity: 0;
      visibility: hidden;
    }

    .success-popup.show {
      transform: translate(-50%, -50%) scale(1);
      /* ADDED: Make it visible when showing */
      opacity: 1;
      visibility: visible;
    }

    .popup-close-btn {
         position: absolute;
    top: 6px;
    right: 6px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 14px;
    }

    .popup-close-btn:hover {
      background: #e0e0e0;
      color: #000;
      transform: scale(1.1);
    }

    .popup-close-btn:active {
      transform: scale(0.95);
    }

    .success-emoji {
      font-size: 4rem;
      margin-bottom: 1rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .main-title {
        font-size: 2rem;
      }

      .social_media_icon_div {
        width: 50px;
        height: 50px;
      }

      .social_media_icon {
        font-size: 20px;
      }

      .description {
        font-size: 1rem;
      }

      .top-left,
      .top-right {
        top: 100px;
      }

      .middle-left {
        left: 10px;
      }

      .middle-right {
        right: 10px;
      }

      .bottom-left,
      .bottom-right {
        bottom: 200px;
      }

      .social-links-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

      .footer-title {
        font-size: 1.2rem;
      }

      .social-link-item {
        min-width: auto;
        width: 100%;
        max-width: 280px;
      }
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
      z-index: 999;
    }

    .overlay.show {
      opacity: 1;
      visibility: visible;
    }

    /* REVIEW SECTION - UPDATED WITH FIXES */
    .review {
      display: flex;
      flex-direction: column;
      padding: 15px 0px;
      background-color: #fff;
      border: none;
      border-bottom: 1px solid #dbdbdb;
      max-width: 100%;
      width: 100%;
      overflow-x: hidden; /* UPDATED: Changed from overflow: hidden */
      box-sizing: border-box; /* ADDED: Include padding in width calculation */
    }

    .review_body {
      display: flex;
      flex-direction: row;
      padding: 0px 15px;
      width: 100%; /* ADDED: Explicit width */
      box-sizing: border-box; /* ADDED: Include padding in width */
    }

    .avatar1 {
      width: 80px;
      height: 80px;
      position: relative;
      border-radius: 50%;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      margin-right: 15px;
      cursor: pointer;
      flex-shrink: 0; /* ADDED: Prevent avatar from shrinking */
    }

    .actual-review-content {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      text-align: left;
      min-width: 0; /* ADDED: Allow content to shrink */
    }

    .reviewer-name {
      font-size: 20px;
    }

    .rating_number_container {
      display: flex;
      align-items: end;
      height: 30px;
      margin-top: 10px;
      padding: 0;
    }

    .rate {
      display: flex;
      flex-direction: row-reverse;
      justify-content: flex-end;
    }

    .rate input {
      display: none;
    }

    .star-container {
      position: relative;
      display: flex;
      width: 1.1em;
      height: 1.2em;
      font-size: 25px;
    }

    .star-container label.full::before {
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      content: "\f005";
      position: absolute;
      color: #ccc;
      z-index: 0;
    }

    .star-container label.half {
      position: absolute;
      left: 0;
      width: 50%;
      height: 100%;
      z-index: 2;
    }

    .star-container label.full {
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .rate input:checked + label.full::before {
      color: #ffc700;
    }

    .rate input:checked + label.half + input + label.full::before {
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

/* ✅ Half stars: show left-side gradient for selected half, full gold to the right */
.rate input:checked + label.half + input + label.full::before,
.rate
  input:checked
  + label.half
  + input
  + label.full
  ~ .star-container
  label.full::before,
.rate
  input:checked
  + label.half
  + input
  + label.full
  ~ .star-container
  ~ .star-container
  label.full::before {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Active full star */
    .star-container.active label.full::before {
      color: inherit;
    }

    .star-container.active label.half::before {
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

.star-1 label.full::before {
  color: #ccc; /* lightest */
}

.star-2 label.full::before {
  color: #ccc;
}

.star-3 label.full::before {
  color: #ccc;
}

.star-4 label.full::before {
  color: #ccc;
}

.star-5 label.full::before {
  color: #ccc; /* deepest */
}

.star-1 label.half::before {
  background: linear-gradient(90deg, #ffdb4d 50%, #ccc 50%);
}

.star-2 label.half::before {
  background: linear-gradient(90deg, #ffc933 50%, #ccc 50%);
}

.star-3 label.half::before {
  background: linear-gradient(90deg, #ffb700 50%, #ccc 50%);
}

.star-4 label.half::before {
  background: linear-gradient(90deg, #ffa500 50%, #ccc 50%);
}

.star-5 label.half::before {
  background: linear-gradient(90deg, #ff8f00 50%, #ccc 50%);
}

.rate.star-1 .star-container.active label.full::before {
  color: #ffdb4d;
}
.rate.star-2 .star-container.active label.full::before {
  color: #ffc933;
}
.rate.star-3 .star-container.active label.full::before {
  color: #ffb700;
}
    .rate.star-4 .star-container.active label.full::before {
      color: #ffa500;
    }
.rate.star-5 .star-container.active label.full::before {
  color: #ff8f00;
}

.rate.star-1 .star-container.active label.half::before {
  background: linear-gradient(90deg, #ffdb4d 50%, #ccc 50%);
}
.rate.star-2 .star-container.active label.half::before {
  background: linear-gradient(90deg, #ffc933 50%, #ccc 50%);
}
.rate.star-3 .star-container.active label.half::before {
  background: linear-gradient(90deg, #ffb700 50%, #ccc 50%);
}
.rate.star-4 .star-container.active label.half::before {
  background: linear-gradient(90deg, #ffa500 50%, #ccc 50%);
}
.rate.star-5 .star-container.active label.half::before {
  background: linear-gradient(90deg, #ff8f00 50%, #ccc 50%);
}

.rate.star-1 .star-container.half-active label.half::before {
  background: linear-gradient(90deg, #ffdb4d 50%, #ccc 50%);
}
.rate.star-2 .star-container.half-active label.half::before {
  background: linear-gradient(90deg, #ffc933 50%, #ccc 50%);
}
.rate.star-3 .star-container.half-active label.half::before {
  background: linear-gradient(90deg, #ffb700 50%, #ccc 50%);
}
.rate.star-4 .star-container.half-active label.half::before {
  background: linear-gradient(90deg, #ffa500 50%, #ccc 50%);
}
.rate.star-5 .star-container.half-active label.half::before {
  background: linear-gradient(90deg, #ff8f00 50%, #ccc 50%);
}

.rate.star-1 .star-container.half-active label.full::before {
  background: linear-gradient(90deg, #ffdb4d 50%, #ccc 50%);
  background-clip: text;
}
.rate.star-2 .star-container.half-active label.full::before {
  background: linear-gradient(90deg, #ffc933 50%, #ccc 50%);
  background-clip: text;
}
.rate.star-3 .star-container.half-active label.full::before {
  background: linear-gradient(90deg, #ffb700 50%, #ccc 50%);
  background-clip: text;
}
.rate.star-4 .star-container.half-active label.full::before {
  background: linear-gradient(90deg, #ffa500 50%, #ccc 50%);
  background-clip: text;
}
.rate.star-5 .star-container.half-active label.full::before {
  background: linear-gradient(90deg, #ff8f00 50%, #ccc 50%);
  background-clip: text;
}

    .verified_review_or_no {
      font-size: 12px;
      background-color: #e5e7eb;
      height: fit-content;
      padding: 10px;
      border-radius: 50px;
      flex-shrink: 0; /* ADDED: Prevent badge from shrinking */
    }

    .green_check_badge {
      display: inline-block;
      background-color: #22c55e;
      color: white;
      font-weight: bold;
      font-size: 12px;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      text-align: center;
      line-height: 18px;
      font-family: sans-serif;
      margin-right: 4px;
    }

    .red_x_badge {
      display: inline-block;
      background-color: #e3342f;
      color: white;
      font-weight: bold;
      font-size: 12px;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      text-align: center;
      line-height: 18px;
      font-family: sans-serif;
      margin-right: 4px;
    }

    .review_words_review {
           font-size: 15px;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
    align-items: flex-start;
    text-align: left;
    word-wrap: break-word;
    flex-wrap: wrap;
    white-space: normal !important;
    }

    .centering-section {
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      padding: 0px 5px;
      width: 100%; /* ADDED: Explicit width */
      box-sizing: border-box; /* ADDED: Include padding in width */
    }

    .vote-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .vote-icon {
      display: inline-block;
      font-weight: bold;
      font-size: 15px;
      color: #000 !important;
    }

    .vote-count {
      font-size: 16px;
      font-weight: bold;
      color: #333;
      min-width: 20px;
      text-align: center;
    }

    .vote-count::before,
    .vote-count::after {
      content: none;
    }

    .comment-count {
      font-size: 15px;
      margin-right: 3px;
    }

    .share-button {
      background-color: inherit;
      color: black;
      font-size: 25px;
      padding: 10px 5px;
      border-radius: 35px;
      border: none;
      cursor: pointer;
      display: flex;
          align-items: center;
    }

    .comment-button,
    .comment-button1 {
      background-color: inherit;
      color: black;
      font-size: 25px;
      padding: 10px 5px;
      border-radius: 35px;
      border: none;
      cursor: pointer;
      display: flex;
          align-items: center;
    }

    .share-button:hover,
    .comment-button:hover,
    .comment-button1:hover {
      color: #1976d2;
      transform: scale(1.05);
    }

    .comment-button1:hover .svg-comment-button1 {
      fill: #1976d2;
      color: #1976d2;
      transform: scale(1.05);
    }

    .comment-button:hover .svg-comment-button {
      fill: #1976d2;
      color: #1976d2;
      transform: scale(1.05);
    }


.upvote-button.done {
  background-color: rgb(31, 205, 31);
}

    .reviewer-section {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      align-content: flex-end;
      align-items: center;
    }

    .review-words {
      font-size: 15px;
      margin-bottom: 20px;
      width: 200px;
    }

    .reviewer-name {
      font-size: 20px;
    }

    .reviewer-content-name {
      display: flex;
      margin: 0;
    }

    .reviewer-content {
     display: flex
;
    flex-direction: column;
    }

    .reviewer-content-time {
      display: flex;
      flex-direction: column;
    }

    .reviewer-profile-pic {
      width: 40px;
      height: 40px;
      position: relative;
      border-radius: 50%;
      cursor: pointer;
      z-index: 999;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .interactive-section {
      display: flex;
      align-items: center;
      gap: 5px;
    }

/* BUBBLE DESCRIPTIVES - UPDATED WITH FIXES */
.bubble_descriptives_div {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.5rem;
  margin-top: 10px;
  border-radius: 0.5rem;
  width: 100%;
  max-width: 100%; /* Ensure it doesn't expand parent */
  padding: 5px;
  box-sizing: border-box; /* ADDED: Include padding in width calculation */
  
  /* Hide scrollbar completely */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

/* Keep the tag styling */
.tag {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  background-color: #e5e7eb;
  border-radius: 9999px;
  flex-shrink: 0; /* CRITICAL - prevents shrinking */
  min-width: fit-content; /* Ensures minimum width */
}

/* Hide scrollbar in webkit browsers */
.bubble_descriptives_div::-webkit-scrollbar {
    display: none;
}
    .reviewer_profile_pic {
            width: 80%;
    display: flex
;
    }

    /*DIFFERENT SCREENS SIZES STARTS*/
/* Small devices (landscape phones) */
@media (min-width: 576px) { 
     .top-left,
        .middle-left,
        .bottom-left {
      left: 20px;
    }

    .middle-left,
    .middle-right {
top: 300px;
    }

    .top-right,
    .middle-right,
    .bottom-right {
      right: 20px;
    }

    .profile-preview {
        border-radius: 15px;
    }
}

/* Medium devices (tablets) */
@media (min-width: 768px) {
       .top-left,
        .middle-left,
        .bottom-left {
      left: 60px;
    }

    .middle-left,
    .middle-right {
top: 300px;
    }

    .top-right,
    .middle-right,
    .bottom-right {
      right: 60px;
    }

    .RMR {
          height: 80px;
    }
 }

/* Large devices (desktops) */
@media (min-width: 992px) { 
        .top-left,
        .middle-left,
        .bottom-left {
      left: 100px;
    }

    .top-right,
    .middle-right,
    .bottom-right {
      right: 100px;
    }
}

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
         .top-left,
        .middle-left,
        .bottom-left {
      left: 200px;
    }

    .top-right,
    .middle-right,
    .bottom-right {
      right: 200px;
    }

    .RMR {
          height: 100px;
    }
 }

/* XXL devices */
@media (min-width: 1400px) {
        .top-left,
        .middle-left,
        .bottom-left {
      left: 300px;
    }

    .top-right,
    .middle-right,
    .bottom-right {
      right: 300px;
    }
 }
