 /* ── Suggestions List Animation ── */
    #suggestions {
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: #fff;
      border: 1px solid #ccc;
      border-top: none;
      border-radius: 0 0 0.25rem 0.25rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      z-index: 1000;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition:
        max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
        opacity    0.3s ease-in-out;
    }
    #suggestions.show {
      max-height: 400px;
      opacity: 1;
    }

    /* ── Invalid Field Highlight ── */
    .is-invalid {
      border-color: #dc3545 !important;
    }
    /* Optional: ensure form labels block-level (Bootstrap already does this) */
    form label {
      font-weight: 600;
    }
    .cp{
        text-transform: capitalize;
    }
    .removal-collection-title {
      font-size: clamp(0.5rem, 5vw, 2.1rem); /* Responsive scaling between 0.5rem and 3.5rem */
      color: #210797;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: bold;
    }