 #city-suggestions {
        position: absolute;
        top: 100%;          /* input’un altndan başla */
        left: 0;
        right: 0;
        z-index: 1000;
        max-height: 150px;  /* 3-4 satır */
        overflow-y: auto;
        border: 1px solid #ddd;
        border-top: none;   /* input ile birlesin diye üst kenar kaldırabilirsin */
        border-radius: 0 0 4px 4px;
        background: #fff;
      }

    guests-dropdown {
        position: absolute;
        top: 100%;         /* inputun altından başla */
        left: 0;
        width: 100%;       /* input kadar genişlik */
        margin-top: 2px;
        border: 1px solid #ddd;
        border-radius: 0 0 8px 8px;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      }
    .guest-control {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .guest-control .btn-number {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      padding: 0;
      text-align: center;
      line-height: 34px;
      font-size: 18px;
      font-weight: bold;
    }

    .guest-control .input-number {
      width: 50px;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 4px;
      font-size: 16px;
    }