    body {
      font-family: "Poppins", sans-serif;
      margin: 0;
    }

    /* SMALL PINK CARD */
    .mini-rating-form {
      display: inline-block;
      padding: 8px 12px;
      border-radius: 10px;
      background: linear-gradient(135deg, #fce4ec, #f8bbd9);
      border: 2px solid #f8bbd9;
      box-shadow: 0 6px 20px rgba(244, 143, 177, 0.3);
      font-size: 0.8rem;
    }

    .mini-stars {
      direction: rtl;
      unicode-bidi: bidi-override;
      display: inline-flex;
      font-size: 1.1rem;
      margin-bottom: 6px;
    }

    .mini-stars input { display: none; }
    .mini-stars label {
      color: grey; /* Pink grey stars (inactive) */
      cursor: pointer;
      padding: 0 2px;
      transition: color 0.2s;
      font-size: 1.1em;
    }
    .mini-stars input:checked ~ label,
    .mini-stars label:hover,
    .mini-stars label:hover ~ label {
      color: #25d366; /* GREEN stars when selected/hover! */
    }

    /* SMALL PINK SUBMIT BUTTON */
    .submit-rating-btn {
      border: none;
      margin-left: 8px;
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 0.75rem;
      background: linear-gradient(135deg, #ff4081, #f50057);
      color: black;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
      box-shadow: 0 3px 10px rgba(255, 64, 129, 0.4);
    }

    .submit-rating-btn:hover {
      background: linear-gradient(135deg, #f50057, #c51162);
      transform: translateY(-1px);
      box-shadow: 0 5px 15px rgba(255, 64, 129, 0.5);
    }

    .mini-note {
      display: block;
      margin-top: 6px;
      font-size: 0.7rem;
      text-align: center;
      color: yellow;
    }

    @media (max-width: 480px) {
      .mini-rating-form {
        padding: 2px 2px;
      }
    }
  
/*social midia icon*/

/* CSS - 15 lines mein complete! */
.social-icons a{
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px; height: 50px;
    margin: 0 8px;
    border-radius: 50%;
    background: cyan;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    transition: all .3s cubic-bezier(.4,0,.2,1);
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
}
.social-icons a:nth-child(1):hover { background: #1877f2; color: white; }
.social-icons a:nth-child(2):hover { background: linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color: white; }
.social-icons a:nth-child(3):hover { background: #ff0000; color: white; }